首先,您需要安装webpack和webpack-cli(使用npm或yarn进行安装)。然后,在项目的根目录中创建一个名为webpack.config.js的文件,在其中配置打包规则。
具体配置内容如下:
constpath = require('path');
module.exports = {
entry: './path/to/your/entry/file.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js'
}
};