11 lines
195 B
JavaScript
11 lines
195 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'export',
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
images: { unoptimized: true },
|
|
};
|
|
|
|
module.exports = nextConfig;
|