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

18 lines
364 B

{
"extends": ["plugin:cypress/recommended", "../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {}
},
{
"files": ["src/plugins/index.js"],
"rules": {
"@typescript-eslint/no-var-requires": "off",
"no-undef": "off"
}
}
]
}