website/next.config.js
2025-05-04 21:41:58 -04:00

16 lines
No EOL
280 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
},
],
},
experimental: {
optimizeCss: true,
},
}
module.exports = nextConfig