Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/src/commit/0086e2699e52e6c082c2a7140315c6b6854b7d1e/frontend/gulp/build.js
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
const gulp = require('gulp');
|
|
|
|
require('./clean');
|
|
require('./copy');
|
|
require('./webpack');
|
|
|
|
gulp.task('build',
|
|
gulp.series('clean',
|
|
gulp.parallel(
|
|
'webpack',
|
|
'copyHtml',
|
|
'copyFonts',
|
|
'copyImages'
|
|
)
|
|
)
|
|
);
|
|
|