fix: url prefixes (#395)

This commit is contained in:
Livio Amstutz 2020-07-08 14:55:33 +02:00 committed by GitHub
parent 59ac7f051f
commit 2136efe083
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"prodbuild": "ng build --prod --base-href /console/",
"prodbuild": "ng build --prod",
"lint": "ng lint && stylelint './projects/**/*.scss' --syntax scss",
"postinstall": "../build/console/generate-grpc.sh"
},

View File

@ -65,5 +65,5 @@ func (s *Server) RegisterGateway() server.GatewayFunc {
}
func (s *Server) GatewayPathPrefix() string {
return "/mgmt/v1"
return "/management/v1"
}