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:11 +08:00
parent 8aaa1115ec
commit 0eb852ad64
4 changed files with 18 additions and 4 deletions

10
src/app/not-found.tsx Normal file
View File

@@ -0,0 +1,10 @@
export default function NotFound() {
return (
<html lang="en">
<body>
<h1>404 - Page Not Found</h1>
<p>The page you are looking for does not exist.</p>
</body>
</html>
);
}