8 lines
150 B
JavaScript
8 lines
150 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'export',
|
|
images: { unoptimized: true },
|
|
};
|
|
|
|
export default nextConfig;
|