33 lines
485 B
JavaScript
33 lines
485 B
JavaScript
/**
|
|
* @type {import('next').NextConfig}
|
|
*/
|
|
|
|
const output = 'standalone';
|
|
const nextConfig = {
|
|
trailingSlash: false,
|
|
distDir: 'build',
|
|
output,
|
|
basePath: '',
|
|
devIndicators: {
|
|
position: 'bottom-left',
|
|
},
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
images: {
|
|
unoptimized: true,
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**',
|
|
},
|
|
],
|
|
},
|
|
|
|
};
|
|
|
|
export default nextConfig;
|