webpack 配置 cheerio
vue 安装 cheerio
报错 You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See
应该怎么配置cheerio
webpack 配置 cheerio
vue 安装 cheerio
报错 You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See
应该怎么配置cheerio
这个报错是因为 webpack 没有对 cheerio 这个模块进行处理,需要在 webpack 配置文件中添加相应的 loader 来处理该文件。
具体操作如下:
module: {
rules: [
{
test: /\.html$/,
use: ['html-loader'] // 需要添加的 loader
}
]
}
注意,代码中的 html-loader
可能需要先安装,可以通过以下命令安装:
npm install html-loader --save-dev
此时,webpack 就会识别到 cheerio 模块,并正确处理文件。
针对具体情况而言,你需要在你的 vue 项目配置文件中添加上述代码,应该就能解决你的问题了。