chore: add local build configuration and update formatting for allowed hosts in angular.json

This commit is contained in:
2026-06-28 23:50:21 +00:00
parent 8f56785bc3
commit d79d075c45

View File

@@ -36,7 +36,10 @@
"server": "src/main.server.ts", "server": "src/main.server.ts",
"outputMode": "server", "outputMode": "server",
"security": { "security": {
"allowedHosts": ["localhost", "127.0.0.1"] "allowedHosts": [
"localhost",
"127.0.0.1"
]
}, },
"ssr": { "ssr": {
"entry": "src/server.ts" "entry": "src/server.ts"
@@ -59,6 +62,11 @@
"outputHashing": "all" "outputHashing": "all"
}, },
"development": { "development": {
"optimization": true,
"extractLicenses": false,
"sourceMap": true
},
"local": {
"optimization": false, "optimization": false,
"extractLicenses": false, "extractLicenses": false,
"sourceMap": true "sourceMap": true
@@ -74,6 +82,9 @@
}, },
"development": { "development": {
"buildTarget": "shopit-front:build:development" "buildTarget": "shopit-front:build:development"
},
"local": {
"buildTarget": "shopit-front:build:local"
} }
}, },
"defaultConfiguration": "development" "defaultConfiguration": "development"