Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/homepage/src/commit/0d1a7f1717702ebb0517fdf60b3c35ca51e8a67c/.eslintrc.json You should set ROOT_URL correctly, otherwise the web may not work correctly.
homepage/.eslintrc.json

26 lines
391 B

{
"extends": ["airbnb", "next/core-web-vitals", "prettier"],
"plugins": ["prettier"],
"rules": {
"import/no-cycle": [
"error",
{
"maxDepth": 1
}
],
"import/order": [
"error",
{
"newlines-between": "always"
}
]
},
"settings": {
"import/resolver": {
"node": {
"paths": ["src"]
}
}
}
}