You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
668 B

  1. 'use strict'
  2. module.exports = {
  3. title: 'GIN-VUE-ADMIN1',
  4. vueClientPort: 8080,
  5. goServerPort: 8888,
  6. baseCdnUrl: '//cdn.staticfile.org',
  7. cdns: [
  8. /**
  9. * 如果设置path属性, { name: 'vue', scope: 'Vue', path: '/vue/2.6.9/vue.min.js' } 即编译出来以[baseCdnUrl][path]
  10. * 否则自动拼写 [baseCdnUrl]/[name]/[version]/[name].min.js
  11. * */
  12. { name: 'vue', scope: 'Vue' },
  13. { name: 'vue-router', scope: 'VueRouter' },
  14. { name: 'vuex', scope: 'Vuex' },
  15. { name: 'axios', scope: 'axios' },
  16. { name: 'element-ui', scope: 'ELEMENT', path: '/element-ui/2.12.0/index.js'},
  17. ]
  18. };