Skip to content

Commit c70efec

Browse files
Fix frontend config
1 parent 7dde0b9 commit c70efec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

browser/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN npm clean-install
88
# Copy remaining source code
99
COPY . .
1010
# Build web app.
11-
RUN npm run build -- --configuration=production
11+
RUN npm run build
1212

1313
# Stage 2: Serve pre-built, static files with NGINX.
1414
FROM nginx:stable-alpine AS runtime
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const environment = {
22
production: true,
33
// Assume that both the API and web app are routed on the same hostname.
4-
apiUrl: '/',
4+
apiUrl: '',
55
apiTimeout: 60000,
66
};

0 commit comments

Comments
 (0)