Skip to content

Commit

Permalink
fix: nextjs static export used so it can be deployed on cloudflare pages
Browse files Browse the repository at this point in the history
Signed-off-by: Marin Petrunic <[email protected]>
  • Loading branch information
mpetrunic committed Jul 8, 2024
1 parent a14d6a1 commit e2eedf2
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5,779 deletions.
6 changes: 5 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
output: 'export',
distDir: 'build',
reactStrictMode: true,
};

export default nextConfig;
Loading

0 comments on commit e2eedf2

Please sign in to comment.