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/42f9992af066616c17281006b3fa6f4b60a12ac7/gulp/jshint.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/gulp/jshint.js

14 lines
378 B

var gulp = require('gulp');
var jshint = require('gulp-jshint');
var stylish = require('jshint-stylish');
var cache = require('gulp-cached');
var paths = require('./paths.js');
gulp.task('jshint', function () {
return gulp.src([paths.src.scripts, paths.src.exclude.libs])
11 years ago
.pipe(cache('jshint'))
.pipe(jshint())
.pipe(jshint.reporter(stylish));
10 years ago
});