单项选择题
A.module.exports ={output:{path:path.resolve(__dirname,’dist’),filename:’my-first-webpack.bundle.js’}};
B.module.exports ={entry:’./path/to/my/entry/file.js’};
C.const config ={output:{filename:’my-first-webpack.bundle.js’},module:{rules:[{test:/\.txt$/,use:’raw-loader’}]}};
D.const config ={module:{rules:[{test:/\.txt$/,use:’raw-loader’}]},plugins:[new HtmlWebpackPlugin({template:’./src/index.html’})]};