-
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
0019f5f
commit 3d97cbf
Showing
1 changed file
with
26 additions
and
0 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,26 @@ | ||
# vue-cli-plugin-envhot | ||
|
||
Seamlessly add hot reloading support for your vue-cli based projects. Never worry about rebooting webpack-dev-server again. | ||
|
||
|
||
## Features & Tips | ||
1. Modify .env files in runtime and have it dynamically injected into your application | ||
2. Support modification, addtion, deletion of field in .env files | ||
3. Only works in development mode. | ||
4. Priority of file is ```[".env.development.local", ".env.development", ".env.local", ".env"]```, i.e., value with same key defined in '.env.local' will overwrite value defined in '.env' | ||
|
||
## Installation | ||
|
||
```bash | ||
yarn add vue-cli-plugin-envhot | ||
``` | ||
|
||
OR | ||
```bash | ||
npm install -S vue-cli-plugin-envhot | ||
``` | ||
|
||
|
||
|
||
|
||
|