fix: Change name of flag to enable PDF downloads

This commit is contained in:
AaronBenDaniel
2025-06-24 15:26:53 -04:00
committed by TheOnlyWayUp
parent c2104ee514
commit d372020bac
3 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ RUN rm -rf build
RUN npm install
COPY src/frontend/. .
ARG feature_flag=false
ENV VITE_FEATURE_FLAG=$feature_flag
ARG pdfs=false
ENV VITE_ENABLE_PDFS=$pdfs
RUN npm run build
# Thanks https://stackoverflow.com/q/76988450