-
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.
- Loading branch information
1 parent
b224d20
commit 80c79ce
Showing
6 changed files
with
14 additions
and
21 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
NG_APPLICATION_SERVER_URL=http://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
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,10 +1,8 @@ | ||
// Define the type of the environment variables. | ||
declare interface Env { | ||
readonly NODE_ENV: string; | ||
readonly APPLICATION_SERVER_URL: string; | ||
interface ImportMeta { | ||
readonly env: ImportMetaEnv; | ||
} | ||
|
||
// Use import.meta.env.YOUR_ENV_VAR in your code. | ||
declare interface ImportMeta { | ||
readonly env: Env; | ||
interface ImportMetaEnv { | ||
readonly NODE_ENV: string; | ||
readonly NG_APPLICATION_SERVER_URL: string; | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.