Files
pawol.nu/next.config.js
T
Cédric FAMIBELLE-PRONZOLA 92c65cd44b Edit webpack to accept svg files
2022-10-26 00:31:20 +04:00

20 lines
386 B
JavaScript

const withPWA = require('next-pwa')({
disable: process.env.NODE_ENV !== 'production',
dest: 'public',
register: true,
skipWaiting: true
})
const domains = process.env.NEXT_PUBLIC_DOMAINS_IMAGE.split(' ') || 'localhost'
module.exports = withPWA({
webpack: {
test: /\.svg$/,
use: ['@svgr/webpack', 'url-loader'],
},
swcMinify: true,
images: {
domains
}
})