20 lines
419 B
JavaScript
20 lines
419 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'export',
|
|
devIndicators: false,
|
|
images: { unoptimized: true },
|
|
trailingSlash: true,
|
|
eslint: { ignoreDuringBuilds: true },
|
|
typescript: { ignoreBuildErrors: true },
|
|
skipTrailingSlashRedirect: true,
|
|
distDir: '.next',
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|