salix/webpack.config.js

69 lines
1.6 KiB
JavaScript
Raw Normal View History

var webpack = require('webpack');
var path = require('path');
var devMode = process.env.NODE_ENV !== 'production';
var config = {
entry: {
'bundle.salix': ['salix'],
'bundle.auth': ['auth'],
'bundle.vendor': ['vendor']
},
output: {
path: path.join (__dirname, './services/nginx/static'),
filename: '[name].js',
publicPath: '/static/',
chunkFilename: 'chunk.[name].[chunkhash].js'
},
module: {
loaders: [
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
query: {
presets: ['es2015']
}
},{
test: /\.html$/,
loader: 'html-loader'
},{
test: /\.css$/,
loader: 'style-loader!css-loader'
},{
test: /\.scss$/,
loader: 'style-loader!css-loader!sass-loader'
},{
test: /\.(svg|png|ttf)$/,
loader: 'file-loader'
}
]
},
resolve: {
modules: [
path.join(__dirname, 'client'),
__dirname,
2017-01-31 14:58:28 +00:00
'node_modules',
'/usr/lib/node_modules'
]
},
plugins: [
new webpack.optimize.CommonsChunkPlugin({
names: ['bundle.vendor', 'bundle.manifest']
})
],
devtool: 'source-map'
};
if(!devMode) {
config.plugins.push (
new webpack.optimize.UglifyJsPlugin({
minimize: true,
compress: { warnings: false }
})
);
}
module.exports = config;