本文主要是介绍2022-06-01 学习记录--Error-You may need an appropriate loader to handle this file type, currently no...,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Error-You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file.
一、报错信息
二、报错原因
缺少处理
css
文件的loader
三、解决方法
1、下载处理css
文件的loader
先去
package.json
里检查是否已经下载了style-loader
和css-loader
:
- 若没有下载,则:
npm i style-loader css-loader -D
2、配置webpack
【注意】:配置完后记得要重启项目哟~
在
webpack.config.js
里找到module
里的rules
数组,加上以下代码:
{ test: /\.css$/, use: ['style-loader', 'css-loader']},
这篇关于2022-06-01 学习记录--Error-You may need an appropriate loader to handle this file type, currently no...的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!