gh-dl / next.config.mjs
viocha's picture
初次提交
92fbccd
Raw
History Blame Contribute Delete
251 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
eslint: {
ignoreDuringBuilds: true,
},
typescript: {
ignoreBuildErrors: true,
},
images: {
unoptimized: true,
},
}
export default nextConfig