Files
my-links/next.config.js
2022-05-07 00:12:35 +02:00

16 lines
244 B
JavaScript

module.exports = {
reactStrictMode: true,
images: {
domains: ['lh3.googleusercontent.com']
},
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ["@svgr/webpack"]
});
return config;
},
optimizeFonts: false
}