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/68223f4b1e98b01825516dcba39cbb2d3df31a70/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"]
}