我是react的新手,决定尝试另一种方法来启动项目,而不是create-react-app,我很遗憾,我使用了一个网站createapp.dev,它使用了一个parcel bundler而不是react-scripts bundler,所以在我完成项目后,我试图将其部署到github页面,但无法完成。应用程序然后复制代码,但现在我在一堆错误中游泳x1c 0d1x
dphi5xsq1#
1.安装遗漏的软件包如果用途:
npm install --save react-router-dom sass-loader sass
yarn add react-router-dom sass-loader sass
eqoofvh92#
使用npm:npm install --save-exact sass@1.51.0然后打开package.json文件并检查,这里我使用的是这个版本,它现在仍然可以工作。
npm install --save-exact sass@1.51.0
2条答案
按热度按时间dphi5xsq1#
1.安装遗漏的软件包
如果用途:
npm install --save react-router-dom sass-loader sass
2.Yarn:
yarn add react-router-dom sass-loader sass
eqoofvh92#
使用npm:
npm install --save-exact sass@1.51.0
然后打开package.json文件并检查,这里我使用的是这个版本,它现在仍然可以工作。