diff --git a/console/package.json b/console/package.json index 8f2459be82..0afaf5bb55 100644 --- a/console/package.json +++ b/console/package.json @@ -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" }, diff --git a/internal/api/grpc/management/server.go b/internal/api/grpc/management/server.go index e67a0d5c0e..dcf2339c70 100644 --- a/internal/api/grpc/management/server.go +++ b/internal/api/grpc/management/server.go @@ -65,5 +65,5 @@ func (s *Server) RegisterGateway() server.GatewayFunc { } func (s *Server) GatewayPathPrefix() string { - return "/mgmt/v1" + return "/management/v1" }