ERROR in ./src/App.js 5:0-74 Module not found: Error: Can't resolve 'react-router-dom' in 'C:\Users\烟火阑珊倚人间\try1\src' ERROR in ./src/App.js 6:0-30 Module not found: Error: Can't resolve 'antd' in 'C:\Users\烟火阑珊倚人间\try1\src' ERROR in ./src/index.js 6:0-39 Module not found: Error: Can't resolve 'react-redux' in 'C:\Users\烟火阑珊倚人间\try1\src' ERROR in ./src/index.js 9:0-28 Module not found: Error: Can't resolve 'antd/dist/antd.css' in 'C:\Users\烟火阑珊倚人间\try1\src' ERROR in ./src/pages/ItemsPage.js 6:0-38 Module not found: Error: Can't resolve 'react-redux' in 'C:\Users\烟火阑珊倚人间\try1\src\pages' ERROR in ./src/pages/ItemsPage.js 7:0-42 Module not found: Error: Can't resolve '../redux/api' in 'C:\Users\烟火阑珊倚人间\try1\src\pages' ERROR in ./src/redux/store.js 3:0-53 Module not found: Error: Can't resolve 'redux' in 'C:\Users\烟火阑珊倚人间\try1\src\redux' ERROR in ./src/redux/store.js 4:0-42 Module not found: Error: Can't resolve 'redux-thunk' in 'C:\Users\烟火阑珊倚人间\try1\src\redux'
时间: 2023-12-14 10:41:20 浏览: 277
These errors indicate that some modules are missing in your project. It seems like you need to install the required dependencies.
To resolve these errors, you can run the following command in the root directory of your project:
```
npm install react-router-dom antd react-redux redux redux-thunk
```
This command will install the necessary packages (`react-router-dom`, `antd`, `react-redux`, `redux`, `redux-thunk`).
After the installation is complete, try running your project again. The missing module errors should be resolved.
If you have any further questions, feel free to ask!
相关问题
error in ./src/router/index.js Module not found: Error: Can't resolve '@/pages/Resgister' in 'D:\zuoye\app\src\router' ERROR in ./src/router/index.js 6:0-42 Module not found: Error: Can't resolve '@/pages/Resgister' in 'D:\zuoye\app\src\router' @ ./src/main.js 3:0-30 9:2-8 webpack compiled with 1 error
根据错误信息,你的项目在 `./src/router/index.js` 文件中引用了一个不存在的模块 `@/pages/Resgister`。这个错误通常出现在路径引用不正确或文件不存在的情况下。
请确保你的 `@/pages/Resgister` 路径是正确的,并且文件确实存在于该路径中。检查文件名的拼写是否正确,并确保大小写匹配。
另外,确保你的项目中已经正确地配置了别名 `@`,它通常指向 `src` 目录。你可以检查 `webpack` 或其他构建工具的配置文件,以确保别名正确设置。
如果问题仍然存在,请提供更多关于你的项目结构和代码的信息,以便我可以更具体地帮助你解决问题。
ERROR Failed to compile with 1 error 14:38:25 error in ./src/router/index.js Module not found: Error: Can't resolve '../views/error-pages/404.vue' in 'E:\Vue CLI\wyd\src\router' ERROR in ./src/router/index.js 5:0-52 Module not found: Error: Can't resolve '../views/error-pages/404.vue' in 'E:\Vue CLI\wyd\src\router' @ ./src/main.js 3:0-30 9:2-8 webpack compiled with 1 error
很抱歉,我并不是一个程序员,无法处理这个错误。但是根据错误信息来看,似乎是在引用 '../views/error-pages/404.vue' 这个文件时出现了问题,可能是路径有误或者文件不存在。你可以检查一下路径是否正确,文件是否存在,并且确保你的代码中正确地引用了这个文件。如果还有问题,建议你请教一些专业的程序员或者在相关的论坛上提问。
阅读全文