2024-01-07 18:34:09 +00:00
|
|
|
/**
|
|
|
|
* @type {import('next').NextConfig}
|
|
|
|
*/
|
|
|
|
const nextConfig = {
|
2024-01-07 20:05:17 +00:00
|
|
|
output: 'export',
|
|
|
|
eslint: {
|
|
|
|
ignoreDuringBuilds: true
|
|
|
|
},
|
|
|
|
typescript: {
|
|
|
|
ignoreBuildErrors: true
|
2024-01-09 04:33:54 +00:00
|
|
|
},
|
|
|
|
images: {
|
|
|
|
unoptimized: true
|
2024-01-07 20:05:17 +00:00
|
|
|
}
|
2023-12-30 16:49:39 +00:00
|
|
|
}
|
2024-01-07 18:34:09 +00:00
|
|
|
|
|
|
|
export default nextConfig
|