mirror of
https://github.com/lumina-rocks/lumina.git
synced 2026-04-09 06:56:57 +02:00
21 lines
360 B
JavaScript
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); |