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

19 lines
543 B

7 years ago
const gulp = require('gulp');
const livereload = require('gulp-livereload');
const gulpWatch = require('gulp-watch');
7 years ago
const paths = require('./helpers/paths.js');
require('./copy.js');
require('./webpack.js');
function watch() {
7 years ago
livereload.listen({ start: true });
gulp.task('webpackWatch')();
gulpWatch(paths.src.html, gulp.series('copyHtml'));
gulpWatch(`${paths.src.fonts}**/*.*`, gulp.series('copyFonts'));
gulpWatch(`${paths.src.images}**/*.*`, gulp.series('copyImages'));
}
7 years ago
gulp.task('watch', gulp.series('build', watch));