Checkpoint: Initial stable CheckFlow base before i18n and demo mode

This commit is contained in:
2026-08-20 14:01:12 +09:00
parent ab601d90ac
commit 3e56120b00
42 changed files with 4727 additions and 167 deletions
+11 -2
View File
@@ -1,7 +1,16 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: "standalone",
// PWA service worker (manual - no next-pwa needed)
async headers() {
return [
{
source: "/manifest.json",
headers: [{ key: "Content-Type", value: "application/manifest+json" }],
},
];
},
};
export default nextConfig;
export default nextConfig;