aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-08-19 17:07:34 +0100
committerGravatar Joe Banks <[email protected]>2024-08-19 17:07:34 +0100
commit3dc11f741397b6be3db638fa95dfe220c075fdba (patch)
tree980b81e93fc4cd6386b4037fdcecf9ac4e1ede7d
parentAdd VoucherValidator to landing page (diff)
Rename API URL environment variable
-rw-r--r--thallium-frontend/vite.config.ts2
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"),
}
});