From 3d97cbf0ea54b1999166518e2a4607a8209d580e Mon Sep 17 00:00:00 2001 From: serializedowen Date: Tue, 18 Aug 2020 11:41:16 +0800 Subject: [PATCH] Create README.md --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..526667a --- /dev/null +++ b/README.md @@ -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 +``` + + + + +