5-4 - convert to next.js

This commit is contained in:
Charlotte Croce 2025-05-04 21:41:58 -04:00
parent 432a72b2f2
commit a23cb6f09c
32 changed files with 9050 additions and 371 deletions

16
next.config.js Normal file
View file

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