We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 059452d + 6f908c7 commit 262d67fCopy full SHA for 262d67f
2 files changed
Dockerfile
@@ -11,11 +11,15 @@ RUN npm install
11
COPY . .
12
13
RUN npm run generate-website
14
+# Add verification
15
+RUN ls -la .output/public || exit 1
16
17
# run
18
FROM nginx:stable-alpine
19
WORKDIR /app
20
21
COPY --from=build /app/.output/public /usr/share/nginx/html
22
23
+RUN ls -la /usr/share/nginx/html || exit 1
24
EXPOSE 80
25
CMD ["nginx", "-g", "daemon off;"]
layouts/default.vue
@@ -11,7 +11,7 @@ const trackingDisabled = computed(() => {
return !isProductionDomain || isStaging
})
-init('TrYgnSHvKAIkGdBl', (disabled = trackingDisabled))
+init('TrYgnSHvKAIkGdBl', { disabled: trackingDisabled })
trackPages()
</script>
0 commit comments