create-react-app 安装React时出现错误,使用yarn进行安装,

ddarikpa  于 5个月前  发布在  React
关注(0)|答案(2)|浏览(59)

yarn add v1.22.11
[1/4] Resolving packages...
⠂ react@^17.0.2
info There appears to be trouble with your network connection. Retrying...
info There appears to be trouble with your network connection. Retrying...
Failed to compile.
./src/reportWebVitals.js
Module not found: Can't resolve 'web-vitals' in 'C:\Users\USER\Desktop\practice\my-app\src'

db2dz4w8

db2dz4w81#

你是否无意中在/src/目录下删除了reportWebVitals.js文件?它被你的/src/index.js文件在标准模板的第5行导入,然后在第17行初始化。如果你不希望使用这个模块,你需要删除导入和函数初始化,如下所示:

import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';   // remove this import

ReactDOM.render(
  <React.StrictMode>
    <App />
  </React.StrictMode>,
  document.getElementById('root')
);

reportWebVitals();            // remove this function initialization
zyfwsgd6

zyfwsgd62#

这个问题已经被自动标记为过时,因为它没有任何最近的活动。如果没有发生任何进一步的活动,它将在5天后被关闭。

相关问题