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