Blame view

build/webpack.dist.prod.config.js 1.24 KB
71eb889f   Graham Fairweather   Enable creation o...
1
2
3
4
5
  const path = require('path');
  const webpack = require('webpack');
  const merge = require('webpack-merge');
  const webpackBaseConfig = require('./webpack.base.config.js');
  const CompressionPlugin = require('compression-webpack-plugin');
aaa96346   Sergio Crisostomo   prepare dependencies
6
  const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
71eb889f   Graham Fairweather   Enable creation o...
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  
  process.env.NODE_ENV = 'production';
  
  module.exports = merge(webpackBaseConfig, {
      devtool: 'source-map',
      entry: {
          main: './src/index.js'
      },
      output: {
          path: path.resolve(__dirname, '../dist'),
          publicPath: '/dist/',
          filename: 'iview.min.js',
          library: 'iview',
          libraryTarget: 'umd',
          umdNamedDefine: true
      },
      externals: {
          vue: {
              root: 'Vue',
              commonjs: 'vue',
              commonjs2: 'vue',
              amd: 'vue'
          }
      },
      plugins: [
          // @todo
          new webpack.DefinePlugin({
              'process.env.NODE_ENV': '"production"'
          }),
aaa96346   Sergio Crisostomo   prepare dependencies
36
          new UglifyJsPlugin({
71eb889f   Graham Fairweather   Enable creation o...
37
              parallel: true,
61d5f551   yangd   打包到指定文件夹,更新到3.0.1...
38
              sourceMap: true
71eb889f   Graham Fairweather   Enable creation o...
39
40
41
42
43
44
45
          }),
          new CompressionPlugin({
              asset: '[path].gz[query]',
              algorithm: 'gzip',
              test: /\.(js|css)$/,
              threshold: 10240,
              minRatio: 0.8
31e20091   yangd   修复#4555
46
          })
71eb889f   Graham Fairweather   Enable creation o...
47
48
      ]
  });