标签:webpack try 模块 output hunk chunk script exp comm
//commonjs的模块化输出
module.exports = {
entry: ‘./src/script/main.js‘,//打包的入口
//entry:[‘./src/script/main.js‘,‘./src/script/a.js‘]//表示将两个文件打包在一起
//entry:{
main:‘./src/script/main.js‘,
a:‘./src/script/a.js‘
} //如果output写的输出文件是一个的话,这种写法 还是会打包在一个文件里
output:{ //打包后的文件放在什么地方
path:‘./dist/js‘,
filename:‘bundle.js‘ //打包后的文件名
//filename:‘[name]-[hash].js‘ //hash是指本次打包的hash
//filename:‘[name]-[chunkhash].js‘
}
}
标签:webpack try 模块 output hunk chunk script exp comm
原文地址:http://www.cnblogs.com/cxdxm/p/6613941.html