This repository has been archived by the owner on Oct 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca6cdeb
commit c7dbd10
Showing
4 changed files
with
13 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,7 +1,7 @@ | ||
# This is the defualt configurations for Ephemeral's configurations. Feel free to modify these but DO NOT commit them | ||
MASQR=false | ||
PORT=8080 | ||
# for static hosting set the below env | ||
WISP_SERVER= | ||
# for static hosting set the below env to a wisp server | ||
VITE_WISP_SERVER= | ||
LICENSE_SERVER_URL=https://example.com/validate?license= | ||
WHITELISTED_DOMAINS = ["ephemeral.lol", "localhost:8080"] |
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,3 +1,11 @@ | ||
/// <reference types="vite/client" /> | ||
|
||
declare const __BUILD_DATE__: Date; | ||
interface ImportMetaEnv { | ||
readonly VITE_WISP_SERVER: string; | ||
// more env variables... | ||
} | ||
|
||
interface ImportMeta { | ||
readonly env: ImportMetaEnv; | ||
} |
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