This commit is contained in:
Auggie2lbcf
2025-06-13 17:54:41 -05:00
parent 722f5e8f29
commit 6669944dd5
11 changed files with 259 additions and 147 deletions
+14 -4
View File
@@ -1,6 +1,16 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true
}
module.exports = nextConfig
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
port: '',
pathname: '/images/**',
},
],
},
};
module.exports = nextConfig