1
0
mirror of https://github.com/covidpass-org/covidpass.git synced 2025-02-18 12:40:43 +01:00
2021-06-25 12:18:25 +02:00

9 lines
155 B
JavaScript

module.exports = {
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ['@svgr/webpack'],
});
return config;
},
}