blob: df97a86a28d63d61444cfa7130e7ad12976d3eb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/** @type {import('next').NextConfig} */
const nextConfig = {
/* config options here */
reactCompiler: true,
// generate a minimal, production-ready Docker image with only the required runtime files and dependencies
output: "standalone",
async rewrites() {
return [
{
source: "/handbook/:path*",
destination: "/handbook/index.html",
},
];
},
};
export default nextConfig;
|