Skip to content

Commit

Permalink
Change region names
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangoree committed Jan 16, 2024
1 parent 6fdc933 commit 41022cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
BASE_PATH=/

# options: us, eu
VITE_REGION=us
# options: default, uk
VITE_REGION=default
2 changes: 1 addition & 1 deletion src/region.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const regions = ["us", "eu"] as const;
export const regions = ["default", "uk"] as const;
export type Region = (typeof regions)[number];
export const region: Region = import.meta.env.VITE_REGION;

2 comments on commit 41022cc

@vercel
Copy link

@vercel vercel bot commented on 41022cc Jan 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 41022cc Jan 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.