0

当我输入此代码时

 pnpx create-react-app my-app --template typescript

输出画面

✔ Install the following package: create-react-app@latest? (Y/n) · false
Cancelled

如果我输入'n'它不会安装。如果我输入“y”,它会为最新版本安装 create-react-app,数据为 50 - 60 MB。

我不想要最新版本的 create-react-app 。我想在我的计算机中使用已经缓存的 create-react-app,当我通过 pnpm 包管理器安装时总是会发生这种情况。

每当 create-react-app update 那里的包 pnpx 总是要求我安装最新版本时,我告诉不它不安装旧版本。

4

1 回答 1

0

尝试以下步骤:

首先,转到package.json文件并将 、 和 的版本更改为react所需react-domreact-scripts版本。

接下来,清除node_modulespackage-lock.json文件。

最后,点击:

npm install
于 2021-07-04T05:54:28.980 回答