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/182bd717089af9fdcb02cf007b5987a0c78395eb/stylelint.config.js You should set ROOT_URL correctly, otherwise the web may not work correctly.
overseerr/stylelint.config.js

21 lines
381 B

5 years ago
module.exports = {
ignoreFiles: ['**/*.js'],
5 years ago
rules: {
'at-rule-no-unknown': [
5 years ago
true,
{
ignoreAtRules: [
'tailwind',
'apply',
'variants',
'responsive',
'screen',
'layer',
5 years ago
],
},
],
'declaration-block-trailing-semicolon': null,
'no-descending-specificity': null,
5 years ago
},
};