Skip to content

Commit 262d67f

Browse files
Merge pull request #89
develop
2 parents 059452d + 6f908c7 commit 262d67f

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,15 @@ RUN npm install
1111
COPY . .
1212

1313
RUN npm run generate-website
14+
# Add verification
15+
RUN ls -la .output/public || exit 1
1416

1517
# run
1618
FROM nginx:stable-alpine
1719
WORKDIR /app
1820

1921
COPY --from=build /app/.output/public /usr/share/nginx/html
22+
# Add verification
23+
RUN ls -la /usr/share/nginx/html || exit 1
2024
EXPOSE 80
2125
CMD ["nginx", "-g", "daemon off;"]

layouts/default.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const trackingDisabled = computed(() => {
1111
return !isProductionDomain || isStaging
1212
})
1313
14-
init('TrYgnSHvKAIkGdBl', (disabled = trackingDisabled))
14+
init('TrYgnSHvKAIkGdBl', { disabled: trackingDisabled })
1515
trackPages()
1616
</script>
1717

0 commit comments

Comments
 (0)