fix api url mismatch

This commit is contained in:
mengstabketemaw
2026-06-02 09:23:01 +03:00
parent 8e86f74be6
commit e735ba4fca
3 changed files with 34 additions and 12 deletions

40
nx.json
View File

@@ -2,8 +2,14 @@
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"defaultBase": "main",
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"sharedGlobals": ["{workspaceRoot}/nx.json", "{workspaceRoot}/tsconfig.base.json"],
"default": [
"{projectRoot}/**/*",
"sharedGlobals"
],
"sharedGlobals": [
"{workspaceRoot}/nx.json",
"{workspaceRoot}/tsconfig.base.json"
],
"production": [
"default",
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
@@ -11,18 +17,34 @@
]
},
"targetDefaults": {
"build": { "dependsOn": ["^build"], "cache": true },
"lint": { "cache": true },
"test": { "cache": true }
"build": {
"dependsOn": [
"^build"
],
"cache": true
},
"lint": {
"cache": true
},
"test": {
"cache": true
}
},
"plugins": [
{
"plugin": "@nx/vite/plugin",
"options": { "buildTargetName": "build", "serveTargetName": "serve", "testTargetName": "test" }
"options": {
"buildTargetName": "build",
"serveTargetName": "serve",
"testTargetName": "test"
}
},
{
"plugin": "@nx/eslint/plugin",
"options": { "targetName": "lint" }
"options": {
"targetName": "lint"
}
}
]
}
],
"analytics": true
}