mirror of
https://github.com/covidpass-org/covidpass.git
synced 2025-02-18 04:30:53 +01:00
9 lines
155 B
JavaScript
9 lines
155 B
JavaScript
module.exports = {
|
|
webpack(config) {
|
|
config.module.rules.push({
|
|
test: /\.svg$/,
|
|
use: ['@svgr/webpack'],
|
|
});
|
|
return config;
|
|
},
|
|
} |