Files
lumina/next.config.mjs
2025-02-12 15:42:22 +01:00

15 lines
274 B
JavaScript

const nextConfig = {
output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
port: '',
pathname: '/**',
},
],
},
};
export default (nextConfig);