Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/overseerr/blame/commit/366074c12a4d407b3d7ae1392aed317ea042b0c6/stylelint.config.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
overseerr/stylelint.config.js

19 lines
334 B

4 years ago
module.exports = {
rules: {
"at-rule-no-unknown": [
true,
{
ignoreAtRules: [
"tailwind",
"apply",
"variants",
"responsive",
"screen",
],
},
],
"declaration-block-trailing-semicolon": null,
"no-descending-specificity": null,
},
};