Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/src/commit/9a1660da51091c351b90408edb47d324d347632e/frontend/gulp/build.js
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
const gulp = require('gulp');
|
|
const runSequence = require('run-sequence');
|
|
|
|
require('./clean');
|
|
require('./copy');
|
|
|
|
gulp.task('build', () => {
|
|
return runSequence('clean', [
|
|
'webpack',
|
|
'copyHtml',
|
|
'copyFonts',
|
|
'copyImages',
|
|
'copyJs'
|
|
]);
|
|
});
|