add endpoint configuration for city, currency, language, and timezone

This commit is contained in:
Gagan7900
2026-07-15 20:19:46 +05:30
parent 095aed204c
commit be86ab3564
72 changed files with 7874 additions and 471 deletions
+27 -6
View File
@@ -3,7 +3,10 @@
"version": 1,
"cli": {
"packageManager": "npm",
"analytics": "0b3da18f-5d81-4a09-9b2f-b0ce36040773"
"analytics": "0b3da18f-5d81-4a09-9b2f-b0ce36040773",
"schematicCollections": [
"angular-eslint"
]
},
"newProjectRoot": "projects",
"projects": {
@@ -23,7 +26,7 @@
"build": {
"builder": "@angular/build:application",
"options": {
"allowedCommonJsDependencies": [
"allowedCommonJsDependencies": [
"sweetalert2",
"inputmask",
"filepond",
@@ -53,13 +56,22 @@
"src/.htaccess"
],
"styles": [
"node_modules/@ng-select/ng-select/themes/default.theme.css",
"src/styles.scss"
],
"scripts": ["node_modules/preline/dist/preline.js"]
"scripts": [
"node_modules/preline/dist/preline.js"
]
},
"configurations": {
"production": {
"baseHref": "/angular/ynex-tailwind/preview/",
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"baseHref": "/",
"budgets": [
{
"type": "initial",
@@ -80,7 +92,7 @@
"sourceMap": true
}
},
"defaultConfiguration": "production"
"defaultConfiguration": "development"
},
"serve": {
"builder": "@angular/build:dev-server",
@@ -96,8 +108,17 @@
},
"test": {
"builder": "@angular/build:unit-test"
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
}
}
}
}
}
}
}