配置文件webpack.config.js中
引入node的path模块
const path = require('path')
const config = {
entry:'./src/index.js',
output: {
path: path.join(__dirname,'./dist'),
filename: 'bundle.js'
}
}
module.exports = config
入口 entry
输出output中的path需要使用绝对路径,
path.join拼接路径,Nodejs全局变量__dirname
------------------------------------------------------------
参考node中文文档path和global
http://nodejs.cn/api/path.html