const path = require('path')module.exports = { entry: './src/index.js', // 入口文件 // 出口文件 output: { filename: 'main.js', // 文件名称 clean: true, // 清理存储路径中的文件 path: path.resolve(__dirname, 'dist'), // 存储路径(绝对路径) }, mode: 'none', //}