Skip to content

Commit

Permalink
feat: 🔐 add .env functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
kavabunga committed Jan 26, 2024
1 parent 1b7565d commit 75fe4c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/data/constants.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const BACKEND_URL = 'https://goodfood.acceleratorpracticum.ru/api';
export const BASE_URL = 'https://goodfood.acceleratorpracticum.ru';
export const BACKEND_URL = import.meta.env.VITE_API_URL;
export const BASE_URL = import.meta.env.VITE_BASE_URL;

export const URLS = {
SIGNUP: '/signup',
Expand Down

0 comments on commit 75fe4c3

Please sign in to comment.