docs: update README to include private npm registry configuration

develop
时启龙 2024-12-02 15:24:31 +08:00
parent e40b6fc7aa
commit 68f232af19
1 changed files with 12 additions and 0 deletions

View File

@ -30,6 +30,17 @@
node 16.x 其他版本依赖可能会有问题
```sh
# 修改镜像地址 -> 博云私有 npm 仓库地址
npm config set registry http://58.210.154.140:13011/repository/bocloud-npm/
npm config set always-auth true
npm config set auto-install-peers=true
npm config set strict-peer-dependencies=false
npm config set shamefully-hoist=true
npm config set _auth Ym9jbG91ZDpjbXBAdjU4Nw==
# 下载依赖
pnpm install
@ -41,3 +52,4 @@ pnpm serve
# 生产环境构建
pnpm build
```