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...
·
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']},
更多推荐



所有评论(0)