We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d3ff75 commit b0fa983Copy full SHA for b0fa983
next.config.js
@@ -0,0 +1,10 @@
1
+/** @type {import('next').NextConfig} */
2
+const nextConfig = {
3
+ output: "export", // <=== enables static exports
4
+ reactStrictMode: true,
5
+ images: {
6
+ unoptimized: true
7
+ }
8
+ };
9
+
10
+ module.exports = nextConfig;
0 commit comments