feat: initial

This commit is contained in:
2026-06-03 03:08:57 +03:30
parent 3d9585ac5c
commit 6fa30eb29a
45 changed files with 7053 additions and 86 deletions
+8 -1
View File
@@ -1,7 +1,14 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
// Export the whole app as static HTML/JS into `out/` (no Node server).
output: "export",
// Emit `/route/index.html` so any static host serves clean URLs.
trailingSlash: true,
images: {
// Required for `output: export` — no on-demand optimization server exists.
unoptimized: true,
},
};
export default nextConfig;