Files
lumina/next.config.mjs
2025-02-07 19:36:13 +01:00

21 lines
360 B
JavaScript

import withPWA from 'next-pwa';
const config = {
dest: 'public'
};
const nextConfig = {
output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'https',
hostname: '**',
port: '',
pathname: '/**',
},
],
},
};
export default withPWA(config)(nextConfig);