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/48387e5b2f26c0c33acd436c6e1cf902d6c32101/babel.config.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
overseerr/babel.config.js

26 lines
372 B

module.exports = function (api) {
api.cache(true);
return {
presets: [
[
'next/babel',
{
'preset-env': {
useBuiltIns: 'entry',
corejs: '3',
},
},
],
],
plugins: [
[
'react-intl-auto',
{
removePrefix: 'src/',
},
],
],
};
};