mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-24 02:39:18 -05:00
22 lines
429 B
JavaScript
22 lines
429 B
JavaScript
module.exports = {
|
|
env: {
|
|
commitTag: process.env.COMMIT_TAG || 'local',
|
|
},
|
|
publicRuntimeConfig: {
|
|
// Will be available on both server and client
|
|
JELLYFIN_TYPE: process.env.JELLYFIN_TYPE,
|
|
},
|
|
images: {
|
|
domains: ['image.tmdb.org'],
|
|
},
|
|
webpack(config) {
|
|
config.module.rules.push({
|
|
test: /\.svg$/,
|
|
issuer: /\.(js|ts)x?$/,
|
|
use: ['@svgr/webpack'],
|
|
});
|
|
|
|
return config;
|
|
},
|
|
};
|