123456789101112131415161718 |
- 'use strict'
- module.exports = {
- title: '莅临&外出后台',
- baseCdnUrl: '//cdn.staticfile.org',
- cdns: [
- /**
- * 如果设置path属性, { name: 'vue', scope: 'Vue', path: '/vue/2.6.9/vue.min.js' } 即编译出来以[baseCdnUrl][path]
- * 否则自动拼写 [baseCdnUrl]/[name]/[version]/[name].min.js
- * */
- { name: 'vue', scope: 'Vue' },
- { name: 'vue-router', scope: 'VueRouter' },
- { name: 'vuex', scope: 'Vuex' },
- { name: 'axios', scope: 'axios' },
- { name: 'echarts', scope: 'echarts' },
- { name: 'element-ui', scope: 'ELEMENT', path: '/element-ui/2.12.0/index.js'},
- ]
- };
|