Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/src/commit/0d088e085e68d39455fda21d1fd08ebcaef2c06b/next.config.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
overseerr/next.config.js

14 lines
213 B

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