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

20 lines
362 B

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