-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use /api/board api instead of /api/zabo api.
- Loading branch information
1 parent
78c6b8b
commit 5eb1ccd
Showing
3 changed files
with
11 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
## VITE_API_SERVER_URL should end without "/" | ||
VITE_API_SERVER_URL= | ||
VITE_ANIMATION_DURATION= | ||
VITE_TRANSITION_INTERVAL= | ||
VITE_TRANSITION_INTERVAL= | ||
|
||
## put s3 url for initial content for zabo boards | ||
VITE_INIT_CONTENT1= | ||
VITE_INIT_CONTENT2= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
export const API_SERVER_URL = import.meta.env.VITE_API_SERVER_URL; | ||
export const ANIMATION_DURATION = import.meta.env.VITE_ANIMATION_DURATION; | ||
export const TRANSITION_INTERVAL = import.meta.env.VITE_TRANSITION_INTERVAL; | ||
|
||
export const INIT_CONTENT1 = import.meta.env.VITE_INIT_CONTENT1; | ||
export const INIT_CONTENT2 = import.meta.env.VITE_INIT_CONTENT2; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters