2017-12-15 06:07:55 +00:00
|
|
|
'use strict'
|
|
|
|
const path = require('path')
|
|
|
|
const utils = require('./utils')
|
|
|
|
const webpack = require('webpack')
|
|
|
|
const config = require('../config')
|
|
|
|
const merge = require('webpack-merge')
|
|
|
|
const baseWebpackConfig = require('./webpack.base.conf')
|
|
|
|
const CopyWebpackPlugin = require('copy-webpack-plugin')
|
|
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin')
|
|
|
|
const ExtractTextPlugin = require('extract-text-webpack-plugin')
|
|
|
|
const OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin')
|
|
|
|
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
|
2017-04-18 07:09:13 +00:00
|
|
|
|
2017-12-15 06:07:55 +00:00
|
|
|
function resolve (dir) {
|
|
|
|
return path.join(__dirname, '..', dir)
|
2017-04-18 07:09:13 +00:00
|
|
|
}
|
|
|
|
|
2017-12-15 06:07:55 +00:00
|
|
|
const env = require('../config/'+process.env.env_config+'.env')
|
|
|
|
|
|
|
|
const webpackConfig = merge(baseWebpackConfig, {
|
2017-08-07 08:11:10 +00:00
|
|
|
module: {
|
|
|
|
rules: utils.styleLoaders({
|
|
|
|
sourceMap: config.build.productionSourceMap,
|
2017-11-09 10:27:00 +00:00
|
|
|
extract: true,
|
|
|
|
usePostCSS: true
|
2017-08-07 08:11:10 +00:00
|
|
|
})
|
|
|
|
},
|
2017-12-15 06:07:55 +00:00
|
|
|
devtool: config.build.productionSourceMap ? config.build.devtool : false,
|
2017-08-07 08:11:10 +00:00
|
|
|
output: {
|
|
|
|
path: config.build.assetsRoot,
|
|
|
|
filename: utils.assetsPath('js/[name].[chunkhash].js'),
|
2017-12-15 06:07:55 +00:00
|
|
|
chunkFilename: utils.assetsPath('js/[id].[chunkhash].js')
|
2017-08-07 08:11:10 +00:00
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
// http://vuejs.github.io/vue-loader/en/workflow/production.html
|
|
|
|
new webpack.DefinePlugin({
|
2017-11-27 02:51:54 +00:00
|
|
|
'process.env': env
|
2017-08-07 08:11:10 +00:00
|
|
|
}),
|
2017-12-15 06:07:55 +00:00
|
|
|
new UglifyJsPlugin({
|
|
|
|
uglifyOptions: {
|
|
|
|
compress: {
|
|
|
|
warnings: false
|
|
|
|
}
|
2017-08-07 08:11:10 +00:00
|
|
|
},
|
2017-12-15 06:07:55 +00:00
|
|
|
sourceMap: config.build.productionSourceMap,
|
2017-10-31 07:55:59 +00:00
|
|
|
parallel: true
|
2017-08-07 08:11:10 +00:00
|
|
|
}),
|
|
|
|
// extract css into its own file
|
|
|
|
new ExtractTextPlugin({
|
2017-12-15 06:07:55 +00:00
|
|
|
filename: utils.assetsPath('css/[name].[contenthash].css'),
|
|
|
|
// Setting the following option to `false` will not extract CSS from codesplit chunks.
|
|
|
|
// Their CSS will instead be inserted dynamically with style-loader when the codesplit chunk has been loaded by webpack.
|
|
|
|
// increasing file size: https://github.com/vuejs-templates/webpack/issues/1110
|
|
|
|
allChunks: false,
|
2017-08-07 08:11:10 +00:00
|
|
|
}),
|
|
|
|
// Compress extracted CSS. We are using this plugin so that possible
|
|
|
|
// duplicated CSS from different components can be deduped.
|
2017-12-15 06:07:55 +00:00
|
|
|
new OptimizeCSSPlugin({
|
|
|
|
cssProcessorOptions: config.build.productionSourceMap
|
|
|
|
? { safe: true, map: { inline: false } }
|
|
|
|
: { safe: true }
|
|
|
|
}),
|
2017-08-07 08:11:10 +00:00
|
|
|
// generate dist index.html with correct asset hash for caching.
|
|
|
|
// you can customize output by editing /index.html
|
|
|
|
// see https://github.com/ampedandwired/html-webpack-plugin
|
|
|
|
new HtmlWebpackPlugin({
|
2017-12-15 06:07:55 +00:00
|
|
|
filename: config.build.index,
|
2017-08-07 08:11:10 +00:00
|
|
|
template: 'index.html',
|
|
|
|
inject: true,
|
2017-12-15 06:07:55 +00:00
|
|
|
favicon: resolve('favicon.ico'),
|
|
|
|
title: 'vue-element-admin',
|
|
|
|
path: config.build.assetsPublicPath + config.build.assetsSubDirectory,
|
2017-08-07 08:11:10 +00:00
|
|
|
minify: {
|
|
|
|
removeComments: true,
|
|
|
|
collapseWhitespace: true,
|
2017-12-15 06:07:55 +00:00
|
|
|
removeAttributeQuotes: true
|
|
|
|
// more options:
|
|
|
|
// https://github.com/kangax/html-minifier#options-quick-reference
|
2017-08-07 08:11:10 +00:00
|
|
|
},
|
|
|
|
// necessary to consistently work with multiple chunks via CommonsChunkPlugin
|
|
|
|
chunksSortMode: 'dependency'
|
|
|
|
}),
|
2017-12-15 06:07:55 +00:00
|
|
|
// keep module.id stable when vender modules does not change
|
2017-08-07 08:11:10 +00:00
|
|
|
new webpack.HashedModuleIdsPlugin(),
|
2017-11-09 10:17:08 +00:00
|
|
|
// enable scope hoisting
|
|
|
|
new webpack.optimize.ModuleConcatenationPlugin(),
|
2017-08-07 08:11:10 +00:00
|
|
|
// split vendor js into its own file
|
|
|
|
new webpack.optimize.CommonsChunkPlugin({
|
|
|
|
name: 'vendor',
|
2017-12-15 06:07:55 +00:00
|
|
|
minChunks (module) {
|
2017-08-07 08:11:10 +00:00
|
|
|
// any required modules inside node_modules are extracted to vendor
|
|
|
|
return (
|
|
|
|
module.resource &&
|
|
|
|
/\.js$/.test(module.resource) &&
|
|
|
|
module.resource.indexOf(
|
|
|
|
path.join(__dirname, '../node_modules')
|
|
|
|
) === 0
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}),
|
2017-11-23 02:33:29 +00:00
|
|
|
// extract webpack runtime and module manifest to its own file in order to
|
|
|
|
// prevent vendor hash from being updated whenever app bundle is updated
|
|
|
|
new webpack.optimize.CommonsChunkPlugin({
|
|
|
|
name: 'manifest',
|
|
|
|
minChunks: Infinity
|
|
|
|
}),
|
2017-12-15 06:07:55 +00:00
|
|
|
// This instance extracts shared chunks from code splitted chunks and bundles them
|
|
|
|
// in a separate chunk, similar to the vendor chunk
|
|
|
|
// see: https://webpack.js.org/plugins/commons-chunk-plugin/#extra-async-commons-chunk
|
|
|
|
new webpack.optimize.CommonsChunkPlugin({
|
|
|
|
name: 'app',
|
|
|
|
async: 'vendor-async',
|
|
|
|
children: true,
|
|
|
|
minChunks: 3
|
|
|
|
}),
|
2017-08-07 08:11:10 +00:00
|
|
|
// split echarts into its own file
|
|
|
|
new webpack.optimize.CommonsChunkPlugin({
|
|
|
|
async: 'echarts',
|
|
|
|
minChunks(module) {
|
|
|
|
var context = module.context;
|
|
|
|
return context && (context.indexOf('echarts') >= 0 || context.indexOf('zrender') >= 0);
|
|
|
|
}
|
|
|
|
}),
|
2017-09-26 08:08:20 +00:00
|
|
|
// split xlsx into its own file
|
|
|
|
new webpack.optimize.CommonsChunkPlugin({
|
|
|
|
async: 'xlsx',
|
|
|
|
minChunks(module) {
|
|
|
|
var context = module.context;
|
|
|
|
return context && (context.indexOf('xlsx') >= 0);
|
|
|
|
}
|
|
|
|
}),
|
2017-12-15 06:07:55 +00:00
|
|
|
// split codemirror into its own file
|
|
|
|
new webpack.optimize.CommonsChunkPlugin({
|
|
|
|
async: 'codemirror',
|
|
|
|
minChunks(module) {
|
|
|
|
var context = module.context;
|
|
|
|
return context && (context.indexOf('codemirror') >= 0);
|
|
|
|
}
|
2017-08-07 08:11:10 +00:00
|
|
|
}),
|
2017-11-23 02:33:29 +00:00
|
|
|
|
2017-08-07 08:11:10 +00:00
|
|
|
// copy custom static assets
|
2017-12-15 06:07:55 +00:00
|
|
|
new CopyWebpackPlugin([
|
|
|
|
{
|
|
|
|
from: path.resolve(__dirname, '../static'),
|
|
|
|
to: config.build.assetsSubDirectory,
|
|
|
|
ignore: ['.*']
|
|
|
|
}
|
|
|
|
])
|
2017-08-07 08:11:10 +00:00
|
|
|
]
|
2017-04-18 07:09:13 +00:00
|
|
|
})
|
2017-09-29 05:39:42 +00:00
|
|
|
|
2017-12-15 06:07:55 +00:00
|
|
|
if (config.build.productionGzip) {
|
|
|
|
const CompressionWebpackPlugin = require('compression-webpack-plugin')
|
|
|
|
|
|
|
|
webpackConfig.plugins.push(
|
|
|
|
new CompressionWebpackPlugin({
|
|
|
|
asset: '[path].gz[query]',
|
|
|
|
algorithm: 'gzip',
|
|
|
|
test: new RegExp(
|
|
|
|
'\\.(' +
|
|
|
|
config.build.productionGzipExtensions.join('|') +
|
|
|
|
')$'
|
|
|
|
),
|
|
|
|
threshold: 10240,
|
|
|
|
minRatio: 0.8
|
|
|
|
})
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-04-18 07:09:13 +00:00
|
|
|
if (config.build.bundleAnalyzerReport) {
|
2017-12-15 06:07:55 +00:00
|
|
|
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin
|
2017-08-07 08:11:10 +00:00
|
|
|
webpackConfig.plugins.push(new BundleAnalyzerPlugin())
|
2017-04-18 07:09:13 +00:00
|
|
|
}
|
2017-09-29 05:39:42 +00:00
|
|
|
|
2017-04-18 07:09:13 +00:00
|
|
|
module.exports = webpackConfig
|