From 5470393061cba1cdd632422849ed0939aa7ee5b0 Mon Sep 17 00:00:00 2001 From: donghym Date: Sun, 31 May 2026 20:12:00 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E5=88=A0=E9=99=A4=E6=97=A0=E7=94=A8?= =?UTF-8?q?=E7=9A=84=20umirc.ts=20=E5=92=8C=20pm2=20=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 移除了不再需要的本地开发配置文件和进程管理配置,清理冗余文件 --- .umirc.ts | 5 ----- ecosystem.config.cjs | 13 ------------- 2 files changed, 18 deletions(-) delete mode 100644 .umirc.ts delete mode 100644 ecosystem.config.cjs diff --git a/.umirc.ts b/.umirc.ts deleted file mode 100644 index ce38506..0000000 --- a/.umirc.ts +++ /dev/null @@ -1,5 +0,0 @@ -export default { - // ...其他配置 -// host: '0.0.0.0', // Umi 4 不支持 -// port: 8000, // Umi 4 不支持 -} \ No newline at end of file diff --git a/ecosystem.config.cjs b/ecosystem.config.cjs deleted file mode 100644 index 24cdcad..0000000 --- a/ecosystem.config.cjs +++ /dev/null @@ -1,13 +0,0 @@ -module.exports = { - apps: [ - { - name: 'rustui', - script: 'pnpm', - args: 'run start', // 确保你的 package.json 里有 "start": "umi dev" - env: { - // PORT: 8000, // 👈 这里指定端口 - HOST: '0.0.0.0' // 👈 这里指定主机 - } - } - ] -}; \ No newline at end of file