Skip to content

Commit

Permalink
fix: env variable (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
spaenleh authored Aug 4, 2023
1 parent a7571d5 commit ec3d4b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export const DOMAIN = import.meta.env.VITE_GRAASP_DOMAIN;
export const APP_VERSION = import.meta.env.VITE_VERSION;

export const API_HOST =
import.meta.env.VITE_GRAASP_AUTH_HOST || 'http://localhost:3000';
import.meta.env.VITE_GRAASP_API_HOST || 'http://localhost:3000';

export const GRAASP_BUILDER_HOST =
import.meta.env.VITE_GRAASP_BUILDER_HOST ?? 'http://localhost:3111';
Expand Down

0 comments on commit ec3d4b4

Please sign in to comment.