15 lines
316 B
JavaScript
15 lines
316 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
experimental: {
|
|
missingSuspenseWithCSRBailout: false,
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{ protocol: 'https', hostname: '**' },
|
|
{ protocol: 'http', hostname: '**' },
|
|
],
|
|
},
|
|
}
|
|
module.exports = nextConfig
|