diff options
author | 2024-08-19 17:07:34 +0100 | |
---|---|---|
committer | 2024-08-19 17:07:34 +0100 | |
commit | 3dc11f741397b6be3db638fa95dfe220c075fdba (patch) | |
tree | 980b81e93fc4cd6386b4037fdcecf9ac4e1ede7d | |
parent | Add VoucherValidator to landing page (diff) |
Rename API URL environment variable
-rw-r--r-- | thallium-frontend/vite.config.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thallium-frontend/vite.config.ts b/thallium-frontend/vite.config.ts index 3b41d37..63d64d0 100644 --- a/thallium-frontend/vite.config.ts +++ b/thallium-frontend/vite.config.ts @@ -17,6 +17,6 @@ export default defineConfig({ define: { VITE_APP_VERSION: JSON.stringify(process.env.npm_package_version), VITE_COMMIT_HASH: JSON.stringify(commitHash), - THALLIUM_BASE_URL: JSON.stringify(process.env.THALLIUM_API_URL ?? "/api"), + THALLIUM_BASE_URL: JSON.stringify(process.env.THALLIUM_BASE_URL ?? "/api"), } }); |