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

9 lines
156 B

var gulp = require('gulp');
var del = require('del');
var paths = require('./paths');
gulp.task('clean', function (cb) {
del([paths.dest.root], cb);
});