WEREWOLF
App to help werewolf board game's moderator moderate the game
Useful links
Adding new .env variables
To add new variables to the environment, you have to add them in the .env
file. Say we want to add TEST_VAR
:
In .env
:
...
+TEST_VAR="Test variable"
And you also have to add the type of that variable manually in src/types/env.d.ts
:
declare module '@env' {
// ...
+ export const TEST_VAR: string;
}