An open API service indexing awesome lists of open source software.

https://github.com/aircity/vue-cli-plugin-envdotyaml


https://github.com/aircity/vue-cli-plugin-envdotyaml

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

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
```