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/df8c1b53e569726622e78891da5c61c9d6f197ae/server/tsconfig.json You should set ROOT_URL correctly, otherwise the web may not work correctly.
overseerr/server/tsconfig.json

15 lines
252 B

{
"extends": "../tsconfig.json",
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"outDir": "../dist",
"noEmit": false,
"baseUrl": ".",
"paths": {
"@server/*": ["*"]
}
},
"include": ["**/*.ts"]
}