Files
Jyotisha/frontend/next.config.ts
T
Jesse_Chen de857190d7
Staging Backend Quality Gate / validate (push) Successful in 20m41s
Staging Backend Quality Gate / publish (push) Successful in 19m4s
fix staging web image publish
2026-08-09 17:34:43 +08:00

23 lines
524 B
TypeScript

import path from "node:path";
import type { NextConfig } from "next";
const repositoryRoot = path.join(process.cwd(), "..");
const nextConfig: NextConfig = {
devIndicators: false,
experimental: { authInterrupts: true },
output: "standalone",
turbopack: { root: repositoryRoot },
outputFileTracingRoot: repositoryRoot,
outputFileTracingIncludes: {
"/api/consult": [
"../SKILL.md",
"../references/**/*",
"../scripts/**/*",
"../assets/**/*",
],
},
};
export default nextConfig;