1
0
mirror of https://github.com/google/nomulus synced 2026-01-07 14:05:44 +00:00

Build different console versions for different environments (#2715)

TESTED=deployed to alpha
This commit is contained in:
Lai Jiang
2025-03-11 19:39:28 -04:00
committed by GitHub
parent b49e37feee
commit 92ebd0dedb
7 changed files with 63 additions and 8 deletions

View File

@@ -96,11 +96,17 @@
"sourceMap": true,
"namedChunks": true
},
"development": {
"qa": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true,
}
},
"defaultConfiguration": "production"
@@ -120,6 +126,9 @@
"sandbox": {
"buildTarget": "console-webapp:build:sandbox"
},
"qa": {
"buildTarget": "console-webapp:build:qa"
},
"development": {
"buildTarget": "console-webapp:build:development"
}