Skip to content

Commit

Permalink
Fix/Config (#65)
Browse files Browse the repository at this point in the history
Co-authored-by: Yehor Podporinov <[email protected]>
  • Loading branch information
yehor-podporinov and Yehor Podporinov committed Jan 8, 2024
1 parent 8dba31d commit d760512
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VITE_ENVIRONMENT=development
VITE_PORT=8095
VITE_API_URL='https://api.stage.solarity.dev'
VITE_APP_API_URL='https://api.stage.solarity.dev'
VITE_APP_NAME='Solarity'
VITE_APP_COMPANY_URL='https://distributedlab.com'
VITE_APP_DOCUMENTATION_URL='https://docs.stage.solarity.dev'
Expand Down
2 changes: 1 addition & 1 deletion config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { LogLevelDesc } from 'loglevel'

export const config = {
API_URL: import.meta.env.VITE_API_URL as string,
API_URL: import.meta.env.VITE_APP_API_URL as string,
NAME: import.meta.env.VITE_APP_NAME as string,
COMPANY_URL: import.meta.env.VITE_APP_COMPANY_URL as string,
DOCUMENTATION_URL: import.meta.env.VITE_APP_DOCUMENTATION_URL as string,
Expand Down

0 comments on commit d760512

Please sign in to comment.