fix: add not-found.tsx, convert to next.config.mjs, add NODE_ENV=development to Dockerfile

This commit is contained in:
kevin-asprec
2026-04-14 10:53:41 +08:00
parent 17ebbcc5aa
commit f516d4de8a
3 changed files with 14 additions and 4 deletions

6
next.config.mjs Normal file
View File

@@ -0,0 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'standalone',
};
export default nextConfig;