1.0.2 • Published 4 years ago

vue-cli-plugin-yaml v1.0.2

Weekly downloads
1,603
License
MIT
Repository
github
Last release
4 years ago

vue-cli-plugin-yaml

Add YAML support to Webpack using yaml-loader

Install

yarn add --dev vue-cli-plugin-yaml

There is no need to configure anything else

Usage

# src/config.yml

apiKey: abcd
// src/main.js

import config from './config.yml' 
import config from './config'       // extension can be omitted
console.log(config)                 // { "apiKey": "abcd" }

import { apiKey } from '@/config'   // Using @ alias for src
console.log(apiKey)                 // "abcd"