在webpack.config.js
我们可以编写这样的配置文件
const path = require('path');
module.exports = {
entry: './src/script/main.js',
output: {
path: path.resolve('./dist/js'),
filename: 'bundle.js'
}
}
为什么我们应该在输出中使用绝对路径,我们可以在条目中使用相对路径或绝对路径?