Files
boss/next.config.ts
2026-03-26 23:16:56 +08:00

21 lines
379 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
outputFileTracingExcludes: {
"/*": [
"next.config.ts",
"android/**",
"deployment/**",
"docs/**",
"design/**",
"local-agent/**",
"prompts/**",
"scripts/**",
".playwright-cli/**",
],
},
};
export default nextConfig;