Fix
Some checks failed
CI / check (push) Failing after 27s
OSV-Scanner Scheduled Scan / scan-scheduled (push) Successful in 23s
CI / build (push) Has been skipped
Build and Publish Docker Image / build (push) Has been cancelled
Publish NPM Package / publish (push) Failing after 26s

This commit is contained in:
2025-12-25 14:12:27 -06:00
parent 9918638cb8
commit 620e63b7ba

View File

@@ -3,7 +3,7 @@ import { defineConfig } from 'vite';
import { VitePWA } from 'vite-plugin-pwa';
import pkg from './package.json' with { type: 'json' };
const appVersion = import.meta.env.VITE_APP_VERSION ?? pkg.version ?? 'dev';
const appVersion = (process.env as Record<string, string | undefined>).VITE_APP_VERSION ?? pkg.version ?? 'dev';
export default defineConfig({
define: {