Skip to content

Commit

Permalink
fix: Next.js output type
Browse files Browse the repository at this point in the history
  • Loading branch information
ourai committed Sep 11, 2024
1 parent 341c12d commit d2b2a0b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .knosys/sites/default/next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
output: process.env.NODE_ENV === 'production' ? 'export' : undefined,
reactStrictMode: true,
};

export default nextConfig;

0 comments on commit d2b2a0b

Please sign in to comment.