Skip to content

Commit a55d8e5

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

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

next.config.mjs

Lines changed: 7 additions & 1 deletion
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)