ParryQiu/IMOOC-React

You may need an appropriate loader to handle this file type.

yumengzhong opened this issue · 6 comments

你好,我在练习react的时候遇到问题,希望得到帮助
image

image

image
image

编译成功了,但是游览器报错
image

image

这个问题是没有加载到 CSS 对应的 loader 造成的,你尝试删除 node_modules 文件夹后重新执行 npm install 加载所有的包再编译运行试一下。

@ParryQiu 后来我通过另一种方式实现了,您说的我还没有实验
image

绿框不行是因为没有加载 babel-plugin-react-html-attrs 包。
不过我看你已经配置了,应该还是包加载的问题。
你可以删除了重新加载包试试。

我也出现类似的问题,而且不仅是css,css搞定了之后还有如下问题,是loader需要重新配置了吗?多谢
BREAKING CHANGE: It's no longer allowed to omit the '-loader' suffix when using loaders.
You need to specify 'style-loader' instead of 'style',
see https://webpack.js.org/guides/migrating/#automatic-loader-module-name-extension-removed
@ ./src/js/components/footer.js 17:14-45
@ ./src/js/index.js

@zengyanzi 配置文件中的 style 修改成 style-loader 即可。你应该是安装了 2.0 的 webpack,配置需要进行相应的变更。

@ParryQiu 非常感谢!!!