Fix production builds

This commit is contained in:
Yeicor
2025-08-02 13:12:03 +02:00
parent 7d22ca465e
commit 1d6230ef1e
3 changed files with 6 additions and 7 deletions

View File

@@ -62,12 +62,7 @@ export default defineConfig({
__APP_VERSION__: JSON.stringify(version),
__APP_GIT_SHA__: JSON.stringify(execSync('git rev-parse HEAD').toString().trim()),
__APP_GIT_DIRTY__: JSON.stringify(execSync('git diff --quiet || echo dirty').toString().trim()),
__YACV_SMALL_BUILD__: JSON.stringify(wantsSmallBuild),
process: {
env: {
LOCK_SECRET: "hudfhgd8fghdfgh3uhuifdgh" // Shhh, this is a secret key for the vouz.tech locker
}
}
__YACV_SMALL_BUILD__: JSON.stringify(wantsSmallBuild)
}
})