21 lines
379 B
TypeScript
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;
|