#3 update
All checks were successful
Deploy / deploy (push) Successful in 26s

This commit is contained in:
Никита Круглицкий 2025-10-01 23:59:59 +06:00
parent 198c04a616
commit d2b52c476a
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ RUN yarn install
COPY . .
ARG COMMIT_SHA=unknown
ENV COMMIT_SHA=$COMMIT_SHA
ENV VITE_COMMIT_SHA=$COMMIT_SHA
RUN yarn generate

View File

@ -12,7 +12,7 @@ export default defineNuxtConfig({
strictPort: true,
},
define: {
__COMMIT_SHA__: JSON.stringify(process.env.COMMIT_SHA || 'local'),
__COMMIT_SHA__: JSON.stringify(process.env.VITE_COMMIT_SHA || 'local'),
},
},
ignore: ['**/src-tauri/**'],