Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/blame/commit/4ff6c714568e604fb1fe8952a7eaef24d23b9866/frontend/build/webpack/css-variables-loader.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/frontend/build/webpack/css-variables-loader.js

13 lines
317 B

// eslint-disable-next-line filenames/match-exported
const loaderUtils = require('loader-utils');
module.exports = function cssVariablesLoader(source) {
const options = loaderUtils.getOptions(this);
options.cssVarsFiles.forEach((cssVarsFile) => {
this.addDependency(cssVarsFile);
});
return source;
};