18 lines
248 B
JavaScript
18 lines
248 B
JavaScript
/**
|
|
* @type {import('next').NextConfig}
|
|
*/
|
|
const nextConfig = {
|
|
output: 'export',
|
|
eslint: {
|
|
ignoreDuringBuilds: true
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true
|
|
},
|
|
images: {
|
|
unoptimized: true
|
|
}
|
|
}
|
|
|
|
export default nextConfig
|