mirror of
https://github.com/umami-software/umami.git
synced 2026-05-30 06:47:25 +00:00
16 lines
235 B
JavaScript
16 lines
235 B
JavaScript
require('dotenv').config();
|
|
|
|
module.exports = {
|
|
webpack(config) {
|
|
config.module.rules.push({
|
|
test: /\.svg$/,
|
|
issuer: {
|
|
test: /\.js$/,
|
|
},
|
|
use: ['@svgr/webpack'],
|
|
});
|
|
|
|
return config;
|
|
},
|
|
};
|