14 lines
280 B
JavaScript
14 lines
280 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
images: { unoptimized: true },
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
}, // I know this is bad, but idc
|
|
};
|
|
|
|
module.exports = nextConfig;
|