index.js 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. module.exports = {
  2. webpackBarName: 'vue-admin-better',
  3. webpackBanner:
  4. ' build: vue-admin-better \n vue-admin-better QQ Group(QQ群): 972435319、1139183756 \n time: ',
  5. donationConsole() {
  6. const chalk = require('chalk')
  7. console.log(
  8. chalk.green(
  9. `> 欢迎使用vue-admin-beautiful,开源地址:https://github.com/chuzhixin/vue-admin-beautiful`
  10. )
  11. )
  12. console.log(
  13. chalk.green(
  14. `> pro版演示地址:http://chu1204505056.gitee.io/vue-admin-beautiful-pro?hmsr=console&hmpl=&hmcu=&hmkw=&hmci=`
  15. )
  16. )
  17. console.log(
  18. chalk.green(
  19. `> vue 2.x版本演示地址(MIT协议免费商用):http://chu1204505056.gitee.io/vue-admin-beautiful?hmsr=console&hmpl=&hmcu=&hmkw=&hmci=`
  20. )
  21. )
  22. console.log(
  23. chalk.green(
  24. `> vue3.X版演示地址(andv MIT协议免费商用):http://chu1204505056.gitee.io/vue-admin-beautiful-antdv?hmsr=console&hmpl=&hmcu=&hmkw=&hmci=`
  25. )
  26. )
  27. console.log(
  28. chalk.green(
  29. `> 使用中出现任何问题可加QQ群反馈,获取文档(群号:972435319,1139183756)`
  30. )
  31. )
  32. console.log(chalk.green(`> 如果您不希望显示以上信息,可在config中配置关闭`))
  33. console.log('\n')
  34. },
  35. }