9 lines
147 B
JavaScript
9 lines
147 B
JavaScript
|
|
/** @type {import('next').NextConfig} */
|
||
|
|
module.exports = {
|
||
|
|
reactStrictMode: true,
|
||
|
|
output: "export",
|
||
|
|
images: {
|
||
|
|
unoptimized: true
|
||
|
|
},
|
||
|
|
};
|