Ei kuvausta

webpack.prod.conf.js 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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 env = config.build.env
  12. function resolveApp(relativePath) {
  13. return path.resolve(relativePath);
  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('js/[name].[chunkhash].js'),
  26. chunkFilename: utils.assetsPath('js/[id].[chunkhash].js')
  27. },
  28. plugins: [
  29. // http://vuejs.github.io/vue-loader/en/workflow/production.html
  30. new webpack.DefinePlugin({
  31. 'process.env': env
  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('css/[name].[contenthash].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. // generate dist index.html with correct asset hash for caching.
  51. // you can customize output by editing /index.html
  52. // see https://github.com/ampedandwired/html-webpack-plugin
  53. new HtmlWebpackPlugin({
  54. filename: config.build.index,
  55. template: 'index.html',
  56. inject: true,
  57. favicon: resolveApp('favicon.ico'),
  58. minify: {
  59. removeComments: true,
  60. collapseWhitespace: true,
  61. removeAttributeQuotes: true
  62. // more options:
  63. // https://github.com/kangax/html-minifier#options-quick-reference
  64. },
  65. // necessary to consistently work with multiple chunks via CommonsChunkPlugin
  66. chunksSortMode: 'dependency'
  67. }),
  68. // split vendor js into its own file
  69. new webpack.optimize.CommonsChunkPlugin({
  70. name: 'vendor',
  71. minChunks: function (module, count) {
  72. // any required modules inside node_modules are extracted to vendor
  73. return (
  74. module.resource &&
  75. /\.js$/.test(module.resource) &&
  76. module.resource.indexOf(
  77. path.join(__dirname, '../node_modules')
  78. ) === 0
  79. )
  80. }
  81. }),
  82. // extract webpack runtime and module manifest to its own file in order to
  83. // prevent vendor hash from being updated whenever app bundle is updated
  84. new webpack.optimize.CommonsChunkPlugin({
  85. name: 'manifest',
  86. chunks: ['vendor']
  87. }),
  88. // copy custom static assets
  89. new CopyWebpackPlugin([
  90. {
  91. from: path.resolve(__dirname, '../static'),
  92. to: config.build.assetsSubDirectory,
  93. ignore: ['.*']
  94. }
  95. ])
  96. ]
  97. })
  98. if (config.build.productionGzip) {
  99. var CompressionWebpackPlugin = require('compression-webpack-plugin')
  100. webpackConfig.plugins.push(
  101. new CompressionWebpackPlugin({
  102. asset: '[path].gz[query]',
  103. algorithm: 'gzip',
  104. test: new RegExp(
  105. '\\.(' +
  106. config.build.productionGzipExtensions.join('|') +
  107. ')$'
  108. ),
  109. threshold: 10240,
  110. minRatio: 0.8
  111. })
  112. )
  113. }
  114. if (config.build.bundleAnalyzerReport) {
  115. var BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
  116. webpackConfig.plugins.push(new BundleAnalyzerPlugin())
  117. }
  118. module.exports = webpackConfig