We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dde0b9 commit c70efecCopy full SHA for c70efec
browser/Dockerfile
@@ -8,7 +8,7 @@ RUN npm clean-install
8
# Copy remaining source code
9
COPY . .
10
# Build web app.
11
-RUN npm run build -- --configuration=production
+RUN npm run build
12
13
# Stage 2: Serve pre-built, static files with NGINX.
14
FROM nginx:stable-alpine AS runtime
browser/src/environments/environment.ts
@@ -1,6 +1,6 @@
1
export const environment = {
2
production: true,
3
// Assume that both the API and web app are routed on the same hostname.
4
- apiUrl: '/',
+ apiUrl: '',
5
apiTimeout: 60000,
6
};
0 commit comments