Answers for "what is use of environment.ts file"

2

.env typescript

npm install dotenv;
 OR 
yarn add dotenv;


import * as dotenv from 'dotenv';

//inside your starter code, do this
...
...
dotenv.config();
...
Posted by: Guest on August-14-2020

Code answers related to "what is use of environment.ts file"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language