diff options
Diffstat (limited to 'webpack.production.js')
-rw-r--r-- | webpack.production.js | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/webpack.production.js b/webpack.production.js deleted file mode 100644 index a79643b6..00000000 --- a/webpack.production.js +++ /dev/null @@ -1,66 +0,0 @@ -var baseConfig = require('./webpackBaseConfig') -var webpack = require('webpack') -var path = require('path') -var ExtractTextPlugin = require('extract-text-webpack-plugin') -var OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin') -var ParallelUglifyPlugin = require('webpack-parallel-uglify-plugin') - -module.exports = [Object.assign({}, baseConfig, { - plugins: baseConfig.plugins.concat([ - new webpack.DefinePlugin({ - 'process.env': { - 'NODE_ENV': JSON.stringify('production') - } - }), - new ParallelUglifyPlugin({ - uglifyJS: { - compress: { - warnings: false - }, - output: { - max_line_len: 1000000 - }, - mangle: false, - sourceMap: false - } - }), - new ExtractTextPlugin('[name].[hash].css') - ]), - - output: { - path: path.join(__dirname, 'public/build'), - publicPath: '/build/', - filename: '[id].[name].[hash].js', - baseUrl: '<%- url %>' - } -}), { - 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'), - new OptimizeCssAssetsPlugin() - ] -}] |