1.0.2 • Published 5 years ago
vue-cli-plugin-yaml v1.0.2
vue-cli-plugin-yaml
Add YAML support to Webpack using yaml-loader
Install
yarn add --dev vue-cli-plugin-yamlThere 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"