Skip to content

Commit a55d8e5

Browse files
Setup Next.js for static export
1 parent 224a343 commit a55d8e5

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

next.config.mjs

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
/** @type {import('next').NextConfig} */
2-
const nextConfig = {};
2+
const nextConfig = {
3+
output: 'export',
4+
reactStrictMode: true,
5+
images: {
6+
unoptimized: true,
7+
},
8+
};
39

410
export default nextConfig;

0 commit comments

Comments
 (0)