Files
gin-vue-admin/web/src/core/config.js
PiexlMax(奇淼 0ce5a63c1d update: 发布dev2.7.6Beta版本 (#1908)
* feat: 优化菜单管理的路径选择框

* fixed: 修复错误的文件命名

* feat: 增加参数管理功能,调整菜单选择组件。

* feat: 恢复config.yaml

* feat: 更新AI功能

* feat: 增加API自动填充功能

* feat: 增加AI自动填充表格导出模板

* feat: 增加AI自动填充表格导出模板和AI自动模板填充

* feat: 新增方法支持选择是否鉴权

---------

Co-authored-by: Azir <2075125282@qq.com>
2024-10-15 21:58:17 +08:00

32 lines
1.4 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* 网站配置文件
*/
const greenText = (text) => `\x1b[32m${text}\x1b[0m`;
const config = {
appName: 'Gin-Vue-Admin',
appLogo: 'logo.png',
showViteLogo: true,
logs: [],
}
export const viteLogo = (env) => {
if (config.showViteLogo) {
console.log(greenText(`> 欢迎使用Gin-Vue-Admin开源地址https://github.com/flipped-aurora/gin-vue-admin`));
console.log(greenText(`> 当前版本:v2.7.6`));
console.log(greenText(`> 加群方式:微信shouzi_1994 QQ群470239250`));
console.log(greenText(`> 项目地址https://github.com/flipped-aurora/gin-vue-admin`));
console.log(greenText(`> 插件市场:https://plugin.gin-vue-admin.com`));
console.log(greenText(`> GVA讨论社区:https://support.qq.com/products/371961`));
console.log(greenText(`> 默认自动化文档地址:http://127.0.0.1:${env.VITE_SERVER_PORT}/swagger/index.html`));
console.log(greenText(`> 默认前端文件运行地址:http://127.0.0.1:${env.VITE_CLI_PORT}`));
console.log(greenText(`--------------------------------------版权声明--------------------------------------`));
console.log(greenText(`** 版权所有方flipped-aurora开源团队 **`));
console.log(greenText(`** 版权持有公司:北京翻转极光科技有限责任公司 **`));
console.log(greenText(`** 剔除授权标识需购买商用授权https://gin-vue-admin.com/empower/index.html **`));
console.log('\n');
}
}
export default config