21 lines
362 B
JavaScript
21 lines
362 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'export',
|
|
trailingSlash: true,
|
|
distDir: 'out',
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
experimental: {
|
|
optimizePackageImports: ['lucide-react'],
|
|
},
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|