12 lines
252 B
JavaScript
12 lines
252 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
// Emit a fully static site into `out/` when `npm run build` is executed.
|
|
output: "export",
|
|
trailingSlash: true,
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|