HackMD/webpack.production.js

58 lines
1.6 KiB
JavaScript
Raw Normal View History

2016-10-11 07:45:00 +00:00
var baseConfig = require('./webpackBaseConfig');
var webpack = require('webpack');
2016-10-12 09:15:59 +00:00
var path = require('path');
2016-11-02 03:25:21 +00:00
var ExtractTextPlugin = require("extract-text-webpack-plugin");
2016-10-11 07:45:00 +00:00
2016-11-02 10:01:26 +00:00
module.exports = [Object.assign({}, baseConfig, {
2016-10-19 14:41:20 +00:00
plugins: baseConfig.plugins.concat([
2016-10-11 07:45:00 +00:00
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify('production')
}
}),
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
},
2016-10-13 00:56:56 +00:00
mangle: false,
2016-10-11 07:45:00 +00:00
sourceMap: false
2016-11-02 03:25:21 +00:00
}),
new ExtractTextPlugin("[name].[hash].css")
2016-10-19 14:41:20 +00:00
]),
2016-10-12 09:15:59 +00:00
output: {
path: path.join(__dirname, 'public/build'),
publicPath: '/build/',
filename: '[id].[name].[hash].js'
2016-10-19 14:41:20 +00:00
}
2016-11-02 10:01:26 +00:00
}), {
entry: {
htmlExport: path.join(__dirname, 'public/js/htmlExport.js')
},
module: {
loaders: [{
test: /\.css$/,
loader: ExtractTextPlugin.extract('style-loader', 'css-loader')
}, {
test: /\.scss$/,
loader: ExtractTextPlugin.extract('style-loader', 'sass-loader')
}, {
test: /\.less$/,
loader: ExtractTextPlugin.extract('style-loader', 'less-loader')
}]
},
output: {
path: path.join(__dirname, 'public/build'),
publicPath: '/build/',
filename: '[name].js'
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify('production')
}
}),
new ExtractTextPlugin("html.min.css")
]
}];