Files
Patriot_Hacks-24/Project/next.config.js
2025-10-24 02:07:59 -04:00

14 lines
260 B
JavaScript
Executable File

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