我有一个使用 vue-cli 设置 Webpack 4.43.0 的项目。我正在尝试使用 image-size-loader在构建时获取图像大小。
为此,在我的一个 .vue 文件中,我尝试使用我在项目中安装的自定义加载器加载模块:
const background = require("image-size!../../../../assets/images/candy.jpg");
当我的项目构建时,它输出以下错误:
ERROR Failed to compile with 1 errors8:47:03 AM
This dependency was not found:
* image-size!../../../../assets/images/candy.jpg in ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./src/vue/guides/tags/hero/TagGroupInvite.vue?vue&type=script&lang=js&
To install it, you can run: npm install --save image-size!../../../../assets/images/candy.jpg
该文件存在并且 js/ts/css 文件可以正常解析。我的设置有什么问题?