mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
17 lines
277 B
JavaScript
17 lines
277 B
JavaScript
module.exports = {
|
|
env: {
|
|
commitTag: process.env.COMMIT_TAG || 'local',
|
|
},
|
|
webpack(config) {
|
|
config.module.rules.push({
|
|
test: /\.svg$/,
|
|
issuer: {
|
|
test: /\.(js|ts)x?$/,
|
|
},
|
|
use: ['@svgr/webpack'],
|
|
});
|
|
|
|
return config;
|
|
},
|
|
};
|