5-30. nextJS

This commit is contained in:
Charlotte Croce 2025-05-30 20:50:25 -04:00
parent 432a72b2f2
commit 93f8c057b6
51 changed files with 8939 additions and 372 deletions

17
next.config.js Normal file
View file

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