1
resposta

[Dúvida] Erro no prompt de comando

Estou com o erro abaixo no prompt de comando, ao colocar o npm start e não consigo abrir o react no navegador.

C:\Users\gusta>cd organo

C:\Users\gusta\organo>npm start

organo@0.1.0 start react-scripts start

(node:3820) [DEP_WEBPACK_DEV_SERVER_ON_AFTER_SETUP_MIDDLEWARE] DeprecationWarning: 'onAfterSetupMiddleware' option is deprecated. Please use the 'setupMiddlewares' option. (Use node --trace-deprecation ... to show where the warning was created) (node:3820) [DEP_WEBPACK_DEV_SERVER_ON_BEFORE_SETUP_MIDDLEWARE] DeprecationWarning: 'onBeforeSetupMiddleware' option is deprecated. Please use the 'setupMiddlewares' option. Starting the development server... Failed to compile.

Module not found: Error: Can't resolve './reportWebVitals' in 'C:\Users\gusta\organo\src' ERROR in ./src/index.js 8:0-48 Module not found: Error: Can't resolve './reportWebVitals' in 'C:\Users\gusta\organo\src'

webpack compiled with 1 error

1 resposta

Olá Gustavo, tudo bem?

O erro indica que o arquivo reportWebVitals.js não foi encontrado no diretório src do seu projeto, provavelmente porque você excluiu ele, já que não vamos utilizá-lo no nosso projeto.

Para tentar resolver você pode abrir o arquivo index.js dentro do src na raiz do projeto e ver se está tentando importar reportWebVitals e excluir a linha que tenta importar.

Espero ter ajudado e bons estudos!