Signed-off-by: chy <chy@163.com>

This commit is contained in:
chy
2026-02-02 23:17:44 +08:00
parent e10f2f058c
commit a49878384e
774 changed files with 249821 additions and 0 deletions

21
启动说明.txt Normal file
View File

@@ -0,0 +1,21 @@
构建运行环境
第一步检查本地Node环境 Node.js: 18.0.0
node -v
第二步安装PNPM
npm config set registry https://registry.npmmirror.com
npm install -g pnpm
第三步使用PNPM安装项目依赖
pnpm install
第四步:配置项目后台地址
修改项目根目录下文件.env.local中的请求路径为本地后台地址
第五步:启动项目
pnpm run dev
打包:
pnpm run build:prod