Files
rag_agent/rag-web-ui/frontend/next.config.js
2026-04-13 11:34:23 +08:00

12 lines
313 B
JavaScript

/** @type {import('next').NextConfig} */
module.exports = {
output: "standalone",
experimental: {
// This is needed for standalone output to work correctly
outputFileTracingRoot: undefined,
outputStandalone: true,
skipMiddlewareUrlNormalize: true,
skipTrailingSlashRedirect: true,
},
};