diff options
Diffstat (limited to 'communities/red-right-hand/174bg.net')
| -rw-r--r-- | communities/red-right-hand/174bg.net/next.config.mjs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/communities/red-right-hand/174bg.net/next.config.mjs b/communities/red-right-hand/174bg.net/next.config.mjs index 6b715e5..df97a86 100644 --- a/communities/red-right-hand/174bg.net/next.config.mjs +++ b/communities/red-right-hand/174bg.net/next.config.mjs @@ -5,6 +5,15 @@ const nextConfig = { // 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; |
