Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

vue-cli-plugin-envdotyaml

Aircity11MIT1.0.1

vue-cli 3 plugin

vue, vue-cli, env, yaml

readme

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