diff --git a/dcl-attend-frontend/next.config.ts b/dcl-attend-frontend/next.config.ts index e9ffa30..f91553d 100644 --- a/dcl-attend-frontend/next.config.ts +++ b/dcl-attend-frontend/next.config.ts @@ -1,7 +1,13 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + output: "export", + distDir: "out", + // Required for GitHub Pages deployment - turned off when deploying to cv.dean.lol + // basePath: process.env.NODE_ENV === "production" ? "/deanlol-cv" : "/", + images: { + unoptimized: true, + }, }; export default nextConfig;