Here is a standard angular.json file
"projects": {
"myApp": {
[...]
"architect": {
"build": {
[...]
"configurations": {
"production": { [...] },
"debug": { [...] }
}
},
"serve": {
[...]
"configurations": {
"production": {
"browserTarget": "myApp:build:production"
},
"debug": {
"browserTarget": "myApp:build:debug"
}
}
}
}
}
}
I don't understand what's the browserTarget
setting for ?
I couldn't find any documentation, it seems that I'd have to dig into @angular-devkit
...