website/next.config.js
Charlotte Croce 93f8c057b6 5-30. nextJS
2025-05-30 20:50:25 -04:00

17 lines
No EOL
302 B
JavaScript

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