Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/src/commit/9a2cee3104b1e8d32f2df68d3ca75967aba41868/frontend/gulp/clean.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/frontend/gulp/clean.js

9 lines
166 B

const gulp = require('gulp');
const del = require('del');
const paths = require('./helpers/paths');
gulp.task('clean', () => {
return del([paths.dest.root]);
});