这是this question的副本。
在webpack的官方文档中,有以下配置文件:
const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist')
}
};
正如您所看到的,“entry”使用相对路径,而输出路径使用Node.js的path
模块。
这种不一致的原因是什么?为什么可以使用普通路径进行“输入”而不是输出路径?