1.0.1 • Published 5 years ago

vue-cli-plugin-envdotyaml v1.0.1

Weekly downloads
42
License
MIT
Repository
github
Last release
5 years ago

vue-cli-plugin-env-yaml

This is a vue-cli 3.x plugin to inject environment variables.

Environment variables injection

env.yaml:

baseURL: http://example.com/

npm run build

console.log(process.env.baseURL)
// => http://example.com/

Getting started

:warning: Make sure you have vue-cli 3.x.x:

vue --version

If you don't have a project created with vue-cli 3.x yet:

vue create my-new-app

Navigate to the newly created project folder and add the cli plugin:

cd my-new-app
vue add envdotyaml

Start your app:

npm run serve