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

12 lines
264 B

const loaderUtils = require('loader-utils');
module.exports = function cssVariablesLoader(source) {
const options = loaderUtils.getOptions(this);
options.cssVarsFiles.forEach((cssVarsFile) => {
this.addDependency(cssVarsFile);
});
return source;
};