Files
huangjingfen/pro_v3.5.1/view/admin/src/libs/start.js
apple 89af372416 fix(frontend): uniapp devServer 代理指向 Swoole 20199;精简 admin 启动文案
- vue.config.js: /api、/uploads、/statics 的 proxy target 改为 http://127.0.0.1:20199,与本地 API 一致
- admin start.js: 去掉 CRMEB 外链提示,保留简短欢迎语

Made-with: Cursor
2026-03-24 23:09:09 +08:00

12 lines
290 B
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.
#!/usr/bin/env node
const chalk = require("chalk");
// 打印欢迎信息
console.log(
chalk
.hex("#DEADED")
.underline("😄 Hello ~ 欢迎使用Pro版我们将竭诚为您服务")
);
console.log(chalk.blue("info - [你知道吗?] 按 Ctrl+C 可以停止服务呢~"));