index.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. module.exports = {
  2. webpackBarName: "vue-admin-beautiful",
  3. webpackBanner:
  4. " build: vue-admin-beautiful \n copyright: chuzhixin 1204505056@qq.com \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. `> 使用中出现任何问题可加QQ群反馈(群号:972435319,1139183756)`
  15. )
  16. );
  17. console.log(
  18. chalk.green(`> 商务合作、VIP文档、授权版、pro版(QQ:1204505056)`)
  19. );
  20. console.log(
  21. chalk.green(
  22. `> 捐赠(https://chu1204505056.gitee.io/byui-bookmarks/img/donation.png)`
  23. )
  24. );
  25. console.log(
  26. chalk.green(
  27. `> 开源集成版演示地址(http://chu1204505056.gitee.io/vue-admin-beautiful)`
  28. )
  29. );
  30. console.log(
  31. chalk.green(
  32. `> 开源基础版演示地址(http://chu1204505056.gitee.io/vue-admin-beautiful)`
  33. )
  34. );
  35. console.log(
  36. chalk.green(
  37. `> pro版演示地址(http://chu1204505056.gitee.io/vue-admin-beautiful-pro)`
  38. )
  39. );
  40. console.log(chalk.green(`> 如果您不希望显示以上信息,可在设置中配置关闭`));
  41. console.log("\n");
  42. },
  43. };