EvalueTonSavoir/client/src/constants.tsx

10 lines
234 B
TypeScript
Raw Normal View History

2024-03-29 20:08:34 -04:00
// constants.tsx
const ENV_VARIABLES = {
MODE: 'production',
2024-10-31 01:00:26 -04:00
VITE_BACKEND_URL: process.env.VITE_BACKEND_URL || ""
2024-03-29 20:08:34 -04:00
};
2024-04-05 20:10:59 -04:00
2024-10-30 23:42:21 -04:00
console.log(`ENV_VARIABLES.VITE_BACKEND_URL=${ENV_VARIABLES.VITE_BACKEND_URL}`);
2024-03-29 20:08:34 -04:00
export { ENV_VARIABLES };