14 lines
381 B
TypeScript
14 lines
381 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
// use a static export to generate an `out` folder when running `next build && next export`
|
|
// this aligns with the request to "generate out folder" during build time
|
|
output: 'export',
|
|
// note: customize other options as needed
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|