16 lines
No EOL
280 B
JavaScript
16 lines
No EOL
280 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**',
|
|
},
|
|
],
|
|
},
|
|
experimental: {
|
|
optimizeCss: true,
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig |