error - webpack - Can`t resolve '../components/Hello'

ERROR in ./src/client/pages/index.tsx
Module not found: Error: Can't resolve '../components/Hello' in '/Users/liujianchuan/Github/frame/src/client/pages'
 @ ./src/client/pages/index.tsx 5:16-46

原因webpack.config.js配置错误,resolve需要指点文件类型,如下:

resolve: {
extensions: [ '.ts', '.tsx', '.js', '.json']
},

相关文章:

  • 2022-12-23
  • 2021-06-03
  • 2022-12-23
  • 2022-01-16
  • 2022-12-23
  • 2022-12-23
  • 2021-12-10
  • 2022-12-23
猜你喜欢
  • 2021-04-13
  • 2021-11-22
  • 2022-12-23
  • 2021-07-09
  • 2021-12-10
相关资源
相似解决方案