2017-06-15 22:28:08 +00:00
|
|
|
import { each } from 'lodash'
|
2017-01-11 19:14:59 +00:00
|
|
|
import webpack from 'webpack'
|
2017-04-27 11:20:43 +00:00
|
|
|
import VueSSRClientPlugin from 'vue-server-renderer/client-plugin'
|
2017-02-21 17:10:19 +00:00
|
|
|
import HTMLPlugin from 'html-webpack-plugin'
|
2017-03-24 00:28:04 +00:00
|
|
|
import FriendlyErrorsWebpackPlugin from 'friendly-errors-webpack-plugin'
|
2017-02-08 13:09:59 +00:00
|
|
|
import ProgressBarPlugin from 'progress-bar-webpack-plugin'
|
2017-01-23 16:55:39 +00:00
|
|
|
import { BundleAnalyzerPlugin } from 'webpack-bundle-analyzer'
|
2017-08-19 11:10:01 +00:00
|
|
|
import MinifyPlugin from 'babel-minify-webpack-plugin'
|
2017-01-11 19:14:59 +00:00
|
|
|
import { resolve } from 'path'
|
2017-06-12 20:32:34 +00:00
|
|
|
import base from './base.config.js'
|
2017-03-11 23:55:01 +00:00
|
|
|
|
2016-11-07 01:34:58 +00:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Webpack Client Config
|
|
|
|
|
|
|
|
|
| Generate public/dist/client-vendor-bundle.js
|
|
|
|
| Generate public/dist/client-bundle.js
|
|
|
|
|
|
|
|
|
| In production, will generate public/dist/style.css
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
*/
|
2017-06-11 14:57:39 +00:00
|
|
|
export default function webpackClientConfig () {
|
2017-01-09 14:10:22 +00:00
|
|
|
let config = base.call(this, { isClient: true })
|
2016-11-07 01:34:58 +00:00
|
|
|
|
2017-06-15 22:19:53 +00:00
|
|
|
config.name = 'client'
|
|
|
|
|
2017-08-20 18:22:01 +00:00
|
|
|
// App entry
|
2017-06-11 14:17:36 +00:00
|
|
|
config.entry.app = resolve(this.options.buildDir, 'client.js')
|
2016-11-09 22:59:41 +00:00
|
|
|
|
|
|
|
// Add vendors
|
2017-08-20 18:22:01 +00:00
|
|
|
// This vendors should explicitly extracted
|
|
|
|
// Even if not used in 50% of the chunks!
|
|
|
|
const vendor = [
|
|
|
|
'vue',
|
|
|
|
'vue-router',
|
|
|
|
'vue-meta',
|
|
|
|
'core-js',
|
|
|
|
'regenerator-runtime',
|
|
|
|
'es6-promise',
|
|
|
|
'babel-runtime',
|
2017-08-20 18:54:56 +00:00
|
|
|
'vuex'
|
2017-08-20 18:22:01 +00:00
|
|
|
].concat(this.options.build.vendor).filter(v => v)
|
2017-08-18 07:17:56 +00:00
|
|
|
|
2017-07-04 16:30:01 +00:00
|
|
|
// Extract vendor chunks for better caching
|
2017-08-18 07:17:56 +00:00
|
|
|
const _this = this
|
2017-07-04 16:30:01 +00:00
|
|
|
config.plugins.push(
|
|
|
|
new webpack.optimize.CommonsChunkPlugin({
|
2017-08-20 18:22:01 +00:00
|
|
|
name: 'common',
|
2017-07-04 16:30:01 +00:00
|
|
|
filename: this.options.build.filenames.vendor,
|
2017-08-18 07:17:56 +00:00
|
|
|
minChunks (module, count) {
|
|
|
|
// In the dev we use on-demand-entries.
|
|
|
|
// So, it makes no sense to use commonChunks based on the minChunks count.
|
|
|
|
// Instead, we move all the code in node_modules into each of the pages.
|
|
|
|
if (_this.options.dev) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2017-08-20 18:22:01 +00:00
|
|
|
// Extract all explicit vendor modules
|
|
|
|
if (module.context && vendor.some(v => module.context.includes(v))) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2017-08-18 07:17:56 +00:00
|
|
|
// Total pages
|
2017-08-18 10:59:32 +00:00
|
|
|
const totalPages = _this.routes ? _this.routes.length : 0
|
2017-08-18 07:17:56 +00:00
|
|
|
|
2017-07-04 16:30:01 +00:00
|
|
|
// A module is extracted into the vendor chunk when...
|
|
|
|
return (
|
|
|
|
// If it's inside node_modules
|
|
|
|
/node_modules/.test(module.context) &&
|
|
|
|
// Do not externalize if the request is a CSS file
|
2017-08-18 07:17:56 +00:00
|
|
|
!/\.(css|less|scss|sass|styl|stylus)$/.test(module.request) &&
|
|
|
|
// Used in at-least 1/2 of the total pages
|
|
|
|
(totalPages <= 2 ? count >= totalPages : count >= totalPages * 0.5)
|
2017-07-04 16:30:01 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
)
|
2016-11-09 22:59:41 +00:00
|
|
|
|
2017-06-15 22:19:53 +00:00
|
|
|
// Env object defined in nuxt.config.js
|
2016-11-25 14:37:06 +00:00
|
|
|
let env = {}
|
2017-01-11 19:14:59 +00:00
|
|
|
each(this.options.env, (value, key) => {
|
2016-11-25 14:37:06 +00:00
|
|
|
env['process.env.' + key] = (typeof value === 'string' ? JSON.stringify(value) : value)
|
|
|
|
})
|
2017-06-15 22:19:53 +00:00
|
|
|
|
|
|
|
// Webpack common plugins
|
2017-06-19 15:47:31 +00:00
|
|
|
/* istanbul ignore if */
|
2017-06-15 22:19:53 +00:00
|
|
|
if (!Array.isArray(config.plugins)) {
|
|
|
|
config.plugins = []
|
|
|
|
}
|
|
|
|
|
2017-08-18 08:08:43 +00:00
|
|
|
// Generate output HTML for SPA
|
|
|
|
config.plugins.push(
|
|
|
|
new HTMLPlugin({
|
|
|
|
filename: 'index.spa.html',
|
|
|
|
template: this.options.appTemplatePath,
|
|
|
|
inject: true,
|
|
|
|
chunksSortMode: 'dependency'
|
|
|
|
})
|
|
|
|
)
|
|
|
|
|
2017-07-11 00:24:39 +00:00
|
|
|
// Generate output HTML for SSR
|
|
|
|
if (this.options.build.ssr) {
|
|
|
|
config.plugins.push(
|
|
|
|
new HTMLPlugin({
|
|
|
|
filename: 'index.ssr.html',
|
|
|
|
template: this.options.appTemplatePath,
|
|
|
|
inject: false // Resources will be injected using bundleRenderer
|
|
|
|
})
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2017-06-15 22:19:53 +00:00
|
|
|
// Generate vue-ssr-client-manifest
|
|
|
|
config.plugins.push(
|
|
|
|
new VueSSRClientPlugin({
|
|
|
|
filename: 'vue-ssr-client-manifest.json'
|
|
|
|
})
|
|
|
|
)
|
|
|
|
|
|
|
|
// Extract webpack runtime & manifest
|
|
|
|
config.plugins.push(
|
2017-03-25 23:52:39 +00:00
|
|
|
new webpack.optimize.CommonsChunkPlugin({
|
|
|
|
name: 'manifest',
|
2017-04-27 11:20:43 +00:00
|
|
|
minChunks: Infinity,
|
2017-03-25 23:52:39 +00:00
|
|
|
filename: this.options.build.filenames.manifest
|
2016-11-07 01:34:58 +00:00
|
|
|
})
|
2017-06-15 22:19:53 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// Define Env
|
|
|
|
config.plugins.push(
|
|
|
|
new webpack.DefinePlugin(Object.assign(env, {
|
|
|
|
'process.env.NODE_ENV': JSON.stringify(env.NODE_ENV || (this.options.dev ? 'development' : 'production')),
|
|
|
|
'process.env.VUE_ENV': JSON.stringify('client'),
|
|
|
|
'process.browser': true,
|
2017-08-17 12:43:51 +00:00
|
|
|
'process.server': false,
|
2017-08-17 12:50:39 +00:00
|
|
|
'process.static': this.isStatic
|
2017-06-15 22:19:53 +00:00
|
|
|
}))
|
|
|
|
)
|
|
|
|
|
|
|
|
// Build progress bar
|
2017-02-08 13:09:59 +00:00
|
|
|
config.plugins.push(
|
|
|
|
new ProgressBarPlugin()
|
|
|
|
)
|
2017-06-15 22:19:53 +00:00
|
|
|
|
|
|
|
// --------------------------------------
|
|
|
|
// Dev specific config
|
|
|
|
// --------------------------------------
|
2017-06-11 14:17:36 +00:00
|
|
|
if (this.options.dev) {
|
2017-06-15 22:19:53 +00:00
|
|
|
// Add friendly error plugin
|
2017-03-24 00:28:04 +00:00
|
|
|
config.plugins.push(new FriendlyErrorsWebpackPlugin())
|
2017-06-15 22:19:53 +00:00
|
|
|
|
2017-08-16 10:36:27 +00:00
|
|
|
// https://webpack.js.org/plugins/named-modules-plugin
|
|
|
|
config.plugins.push(new webpack.NamedModulesPlugin())
|
|
|
|
|
2017-06-15 14:53:00 +00:00
|
|
|
// Add HMR support
|
2017-08-17 19:33:47 +00:00
|
|
|
config.entry.app = ['webpack-hot-middleware/client?name=client&reload=true', config.entry.app]
|
2017-06-15 14:53:00 +00:00
|
|
|
config.plugins.push(
|
|
|
|
new webpack.HotModuleReplacementPlugin(),
|
|
|
|
new webpack.NoEmitOnErrorsPlugin()
|
|
|
|
)
|
|
|
|
}
|
2017-06-15 22:19:53 +00:00
|
|
|
|
|
|
|
// --------------------------------------
|
|
|
|
// Production specific config
|
|
|
|
// --------------------------------------
|
2017-06-11 14:17:36 +00:00
|
|
|
if (!this.options.dev) {
|
2017-08-17 18:24:20 +00:00
|
|
|
// Scope Hoisting
|
|
|
|
config.plugins.push(
|
|
|
|
new webpack.optimize.ModuleConcatenationPlugin()
|
|
|
|
)
|
|
|
|
|
|
|
|
// https://webpack.js.org/plugins/hashed-module-ids-plugin
|
|
|
|
config.plugins.push(new webpack.HashedModuleIdsPlugin())
|
|
|
|
|
2017-06-15 22:19:53 +00:00
|
|
|
// Minify JS
|
2017-08-19 11:10:01 +00:00
|
|
|
|
|
|
|
// https://github.com/webpack-contrib/babel-minify-webpack-plugin
|
|
|
|
config.plugins.push(new MinifyPlugin())
|
|
|
|
|
|
|
|
// https://github.com/webpack-contrib/uglifyjs-webpack-plugin
|
2016-11-09 22:59:41 +00:00
|
|
|
config.plugins.push(
|
|
|
|
new webpack.optimize.UglifyJsPlugin({
|
2017-03-24 00:28:04 +00:00
|
|
|
sourceMap: true,
|
2017-08-19 11:10:01 +00:00
|
|
|
extractComments: {
|
|
|
|
filename: 'LICENSES'
|
|
|
|
},
|
2016-11-09 22:59:41 +00:00
|
|
|
compress: {
|
|
|
|
warnings: false
|
|
|
|
}
|
|
|
|
})
|
|
|
|
)
|
2017-06-15 22:19:53 +00:00
|
|
|
|
|
|
|
// Webpack Bundle Analyzer
|
|
|
|
if (this.options.build.analyze) {
|
|
|
|
config.plugins.push(
|
|
|
|
new BundleAnalyzerPlugin(Object.assign({}, this.options.build.analyze))
|
|
|
|
)
|
|
|
|
}
|
2016-11-09 22:59:41 +00:00
|
|
|
}
|
2017-06-15 22:19:53 +00:00
|
|
|
|
2016-12-27 13:54:10 +00:00
|
|
|
// Extend config
|
|
|
|
if (typeof this.options.build.extend === 'function') {
|
2017-04-01 05:34:09 +00:00
|
|
|
this.options.build.extend.call(this, config, {
|
2017-06-11 14:17:36 +00:00
|
|
|
dev: this.options.dev,
|
2016-12-27 13:54:10 +00:00
|
|
|
isClient: true
|
|
|
|
})
|
|
|
|
}
|
2017-06-15 22:19:53 +00:00
|
|
|
|
2016-11-09 22:59:41 +00:00
|
|
|
return config
|
2016-11-07 01:34:58 +00:00
|
|
|
}
|