-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: use config ui env instead of meta env
- Loading branch information
Showing
2 changed files
with
3 additions
and
2 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
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,5 +1,6 @@ | ||
import { config } from '../config' | ||
import Time from '../utils/date/Time' | ||
|
||
export const GRANT_VP_THRESHOLD = import.meta.env.VITE_GRANT_VP_THRESHOLD // Testing variable | ||
export const GRANT_VP_THRESHOLD = config.get('VITE_GRANT_VP_THRESHOLD') // Testing variable | ||
export const MAX_LOWER_TIER_GRANT_FUNDING = 20000 | ||
export const BUDGETING_START_DATE = Time.utc('2023-01-01 00:00:00Z').toDate() |