module.exports = { mode: "production", // 设置打包的模式:production生产模式 development开发模式 module: { rules: [ // 配置img加载器 { test: /\.(jpg|png|gif)$/i, type:"asset/resource" // 图片直接资源类型的数据,可以通过指定type来处理 } ] }}
打包后dist目录下成功出现打包后的图片
京公网安备 11010502049817号