configure Next.js for static exports and add GitHub Pages deployment workflow

This commit is contained in:
averel10
2025-11-11 19:54:55 +01:00
parent 63ee23fd63
commit 8b20f95158
2 changed files with 51 additions and 1 deletions

View File

@@ -1,7 +1,8 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: "export", // <=== enables static exports
reactStrictMode: true,
};
export default nextConfig;