Advertisement
Guest User

webpack.prod.conf.js

a guest
Oct 6th, 2018
443
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var path = require('path')
  2. var utils = require('./utils')
  3. var webpack = require('webpack')
  4. var config = require('../config')
  5. var merge = require('webpack-merge')
  6. var baseWebpackConfig = require('./webpack.base.conf')
  7. var CopyWebpackPlugin = require('copy-webpack-plugin')
  8. var HtmlWebpackPlugin = require('html-webpack-plugin')
  9. var ExtractTextPlugin = require('extract-text-webpack-plugin')
  10. var OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin')
  11. var WebpackShellPlugin = require('webpack-shell-plugin');
  12.  
  13. var env = config.build.env
  14.  
  15. var webpackConfig = merge(baseWebpackConfig, {
  16.     module: {
  17.         rules: utils.styleLoaders({
  18.             sourceMap: config.build.productionSourceMap,
  19.             extract: true
  20.         })
  21.     },
  22.     devtool: config.build.productionSourceMap ? '#source-map' : false,
  23.     output: {
  24.         path: config.build.assetsRoot,
  25.         filename: utils.assetsPath('[name].js'),
  26.         chunkFilename: utils.assetsPath('[id].js')
  27.     },
  28.     plugins: [
  29.         // http://vuejs.github.io/vue-loader/en/workflow/production.html
  30.         new webpack.DefinePlugin({
  31.             'process.env.NODE_ENV': JSON.stringify('production')
  32.         }),
  33.         new webpack.optimize.UglifyJsPlugin({
  34.             compress: {
  35.                 warnings: false
  36.             },
  37.             sourceMap: true
  38.         }),
  39.         // extract css into its own file
  40.         new ExtractTextPlugin({
  41.             filename: utils.assetsPath('[name].css')
  42.         }),
  43.         // Compress extracted CSS. We are using this plugin so that possible
  44.         // duplicated CSS from different components can be deduped.
  45.         new OptimizeCSSPlugin({
  46.             cssProcessorOptions: {
  47.                 safe: true
  48.             }
  49.         }),
  50.         // split vendor js into its own file
  51.         new webpack.optimize.CommonsChunkPlugin({
  52.             name: 'vendor',
  53.             minChunks: function (module, count) {
  54.                 // any required modules inside node_modules are extracted to vendor
  55.                 return (
  56.                     module.resource &&
  57.                     /\.js$/.test(module.resource) &&
  58.                     module.resource.indexOf(
  59.                         path.join(__dirname, '../node_modules')
  60.                     ) === 0
  61.                 )
  62.             }
  63.         }),
  64.         // extract webpack runtime and module manifest to its own file in order to
  65.         // prevent vendor hash from being updated whenever app bundle is updated
  66.         new webpack.optimize.CommonsChunkPlugin({
  67.             name: 'manifest',
  68.             chunks: ['vendor']
  69.         }),
  70.         //Touch init file, remove old, move new folder
  71.         new WebpackShellPlugin({
  72.             onBuildEnd: [
  73.                 //Create init file, remove old folder and move new files to it's place
  74.                 'touch ' + config.build.assetsRoot + '/init && rm -rfd ' + config.build.assetsRoot + '/../webpack && mv -T ' + config.build.assetsRoot + ' ' + config.build.assetsRoot + '/../webpack'
  75.             ],
  76.             safe:true
  77.         }),
  78.     ]
  79. })
  80.  
  81. if (config.build.productionGzip) {
  82.     var CompressionWebpackPlugin = require('compression-webpack-plugin')
  83.  
  84.     webpackConfig.plugins.push(
  85.         new CompressionWebpackPlugin({
  86.             asset: '[path].gz[query]',
  87.             algorithm: 'gzip',
  88.             test: new RegExp(
  89.                 '\\.(' +
  90.                 config.build.productionGzipExtensions.join('|') +
  91.                 ')$'
  92.             ),
  93.             threshold: 10240,
  94.             minRatio: 0.8
  95.         })
  96.     )
  97. }
  98.  
  99. if (config.build.bundleAnalyzerReport) {
  100.     var BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
  101.     webpackConfig.plugins.push(new BundleAnalyzerPlugin())
  102. }
  103.  
  104. module.exports = webpackConfig
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement