mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-11-15 17:21:38 +03:00
8 lines
225 B
TypeScript
8 lines
225 B
TypeScript
/**
|
|
* Variable constants depending on build type.
|
|
* Extracted as separate file because of bundler issues during tests
|
|
*/
|
|
export const buildConstants = {
|
|
backend: import.meta.env.VITE_PORTAL_BACKEND as string
|
|
} as const;
|