fix: set outputFileTracingRoot for predictable standalone output

This commit is contained in:
CREDO23 2026-03-17 19:28:27 +02:00
parent 8cf12db72a
commit ec118ed011
4 changed files with 5 additions and 10 deletions

View file

@ -1,3 +1,4 @@
import path from "path";
import { createMDX } from "fumadocs-mdx/next";
import type { NextConfig } from "next";
import createNextIntlPlugin from "next-intl/plugin";
@ -10,6 +11,7 @@ const withNextIntl = createNextIntlPlugin("./i18n/request.ts");
// ships what desktop users actually need.
const nextConfig: NextConfig = {
output: "standalone",
outputFileTracingRoot: path.join(__dirname, ".."),
reactStrictMode: false,
typescript: {
ignoreBuildErrors: true,