mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 07:03:25 +00:00
16 lines
244 B
JavaScript
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
|
|
}
|