var webpack = require('webpack');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var getHtmlConfig = function(name){
return{
template:'./src/view/'+name+'.html',
filename:'view/'+name+'.html',
inject:true,
hash:true,
chunks:['common',name]
}
}
var config = {
entry:{
//多个js文件如果文件
'common': ['./src/page/common/index.js'],
'index' : ['./src/page/index/index.js'],
'login' : ['./src/page/login/index.js']
},
output:{
path:'./dist',
filename:'js/[name].js'
},
externals:{
'jquery':'window.jQuery'
},
module:{
loaders:[
{
test:/\.css$/,
loader:ExtractTextPlugin.extract("style-loader","css-loader")
},
{
test: /\.(gif|png|jpg|woff|svg|eot|ttf)\??.*$/, loader: 'url-loader?limit=100&name=resource/[name].[ext]'
//test:/\.(gif|png|jpg|woff|svg|eot|ttf)\??.*$/,
//loader:'url-loader?limit=1000&name=resource/[name].[ext]'
// options: {
// limit: 100,
// name: 'resourse/[name].[ext]'
// }
}
]
},
plugins:[
//打包独立的公用的base.js文件
new webpack.optimize.CommonsChunkPlugin({
name:'common',
filename:'js/base.js'
}),
//把css按照名称单独达到文件里
new ExtractTextPlugin("css/[name].css"),
//打包html的模块
new HtmlWebpackPlugin(getHtmlConfig('index')),
new HtmlWebpackPlugin(getHtmlConfig('login')),
]
};
module.exports = config;