2017-12-12 09:42:29 +00:00
|
|
|
const { each } = require('lodash')
|
|
|
|
const webpack = require('webpack')
|
2018-03-16 07:48:29 +00:00
|
|
|
// const VueSSRClientPlugin = require('vue-server-renderer/client-plugin')
|
|
|
|
const VueSSRClientPlugin = require('./plugins/vue/client')
|
2017-12-12 09:42:29 +00:00
|
|
|
const HTMLPlugin = require('html-webpack-plugin')
|
2018-03-16 09:59:03 +00:00
|
|
|
const FriendlyErrorsWebpackPlugin = require('@nuxtjs/friendly-errors-webpack-plugin')
|
2018-03-13 12:06:12 +00:00
|
|
|
const StylishPlugin = require('webpack-stylish')
|
2017-12-12 09:42:29 +00:00
|
|
|
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer')
|
|
|
|
const { resolve } = require('path')
|
|
|
|
const Debug = require('debug')
|
|
|
|
const base = require('./base.config.js')
|
2018-03-17 09:34:33 +00:00
|
|
|
const ExtractTextPlugin = require('extract-text-webpack-plugin')
|
2017-03-11 23:55:01 +00:00
|
|
|
|
2017-08-21 11:16:35 +00:00
|
|
|
const debug = Debug('nuxt:build')
|
|
|
|
debug.color = 2 // Force green color
|
|
|
|
|
2018-03-17 10:06:33 +00:00
|
|
|
const isWindows = /^win/.test(process.platform)
|
|
|
|
|
2018-03-17 09:34:33 +00:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Webpack Client Config
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
*/
|
2017-12-12 09:42:29 +00:00
|
|
|
module.exports = function webpackClientConfig() {
|
2018-03-17 09:39:14 +00:00
|
|
|
let config = base.call(this, { name: 'client', isServer: false })
|
2017-06-15 22:19:53 +00:00
|
|
|
|
2017-11-07 12:05:41 +00:00
|
|
|
// Entry points
|
2018-03-17 07:23:00 +00:00
|
|
|
config.entry = resolve(this.options.buildDir, 'client.js')
|
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) => {
|
2018-01-13 05:22:11 +00:00
|
|
|
env['process.env.' + key] =
|
|
|
|
['boolean', 'number'].indexOf(typeof value) !== -1
|
|
|
|
? value
|
|
|
|
: JSON.stringify(value)
|
2016-11-25 14:37:06 +00:00
|
|
|
})
|
2017-06-15 22:19:53 +00:00
|
|
|
|
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'
|
|
|
|
})
|
|
|
|
)
|
|
|
|
|
|
|
|
// Define Env
|
|
|
|
config.plugins.push(
|
2018-01-13 05:22:11 +00:00
|
|
|
new webpack.DefinePlugin(
|
|
|
|
Object.assign(env, {
|
|
|
|
'process.env.VUE_ENV': JSON.stringify('client'),
|
|
|
|
'process.mode': JSON.stringify(this.options.mode),
|
|
|
|
'process.browser': true,
|
|
|
|
'process.client': true,
|
|
|
|
'process.server': false,
|
|
|
|
'process.static': this.isStatic
|
|
|
|
})
|
|
|
|
)
|
2017-06-15 22:19:53 +00:00
|
|
|
)
|
|
|
|
|
2018-01-13 05:22:11 +00:00
|
|
|
const shouldClearConsole =
|
|
|
|
this.options.build.stats !== false &&
|
|
|
|
this.options.build.stats !== 'errors-only'
|
2017-12-17 13:59:50 +00:00
|
|
|
|
2017-12-13 06:53:32 +00:00
|
|
|
// Add friendly error plugin
|
2018-01-13 05:22:11 +00:00
|
|
|
config.plugins.push(
|
|
|
|
new FriendlyErrorsWebpackPlugin({ clearConsole: shouldClearConsole })
|
|
|
|
)
|
2017-12-13 06:53:32 +00:00
|
|
|
|
2018-03-11 21:28:56 +00:00
|
|
|
// Optimization
|
2018-03-17 07:23:00 +00:00
|
|
|
config.optimization.splitChunks = {
|
|
|
|
chunks: 'all',
|
|
|
|
// TODO: remove spa after https://github.com/jantimon/html-webpack-plugin/issues/878 solved
|
2018-03-17 10:06:33 +00:00
|
|
|
name: this.options.dev || (this.options.mode === 'spa' && isWindows),
|
2018-03-17 09:34:33 +00:00
|
|
|
|
|
|
|
// Explicit cache groups
|
|
|
|
cacheGroups: {
|
|
|
|
// Vue.js core modules
|
|
|
|
vue: {
|
|
|
|
test: /node_modules\/(vue|vue-loader|vue-router|vuex|vue-meta)\//,
|
|
|
|
chunks: 'initial',
|
|
|
|
name: 'vue',
|
|
|
|
priority: 10,
|
|
|
|
enforce: true
|
|
|
|
},
|
|
|
|
// Common modules which are usually included in projects
|
|
|
|
common: {
|
|
|
|
test: /node_modules\/(core-js|babel-runtime|lodash|es6-promise|moment|axios|webpack|setimediate|timers-browserify|process)\//,
|
|
|
|
chunks: 'initial',
|
|
|
|
name: 'common',
|
|
|
|
priority: 9
|
|
|
|
},
|
|
|
|
// Generated templates
|
|
|
|
main: {
|
|
|
|
test: /\.nuxt\//,
|
|
|
|
chunks: 'initial',
|
|
|
|
name: 'main',
|
|
|
|
priority: 8
|
|
|
|
},
|
|
|
|
// Other vendors inside node_modules
|
|
|
|
vendor: {
|
|
|
|
test: /node_modules\//,
|
|
|
|
chunks: 'initial',
|
|
|
|
name: 'vendor',
|
|
|
|
priority: 8
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create additional runtime chunk for cache boosting
|
|
|
|
config.optimization.runtimeChunk = true
|
|
|
|
|
|
|
|
// CSS extraction
|
|
|
|
const extractCSS = this.options.build.extractCSS
|
|
|
|
if (extractCSS) {
|
|
|
|
config.plugins.push(new ExtractTextPlugin(Object.assign({
|
|
|
|
filename: this.getFileName('css')
|
|
|
|
|
|
|
|
// When using optimization.splitChunks and there are
|
|
|
|
// extracted chunks in the commons chunk,
|
|
|
|
// allChunks *must* be set to true
|
|
|
|
// TODO: For nuxt this makes duplicate css assets!
|
|
|
|
// allChunks: true
|
|
|
|
},
|
|
|
|
typeof extractCSS === 'object' ? extractCSS : {}
|
|
|
|
)))
|
2018-03-11 21:28:56 +00:00
|
|
|
}
|
|
|
|
|
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 14:53:00 +00:00
|
|
|
// Add HMR support
|
2018-03-17 07:23:00 +00:00
|
|
|
config.entry = [
|
2017-08-25 12:01:16 +00:00
|
|
|
// https://github.com/glenjamin/webpack-hot-middleware#config
|
2018-01-13 05:22:11 +00:00
|
|
|
`webpack-hot-middleware/client?name=client&reload=true&timeout=30000&path=${
|
|
|
|
this.options.router.base
|
|
|
|
}/__webpack_hmr`.replace(/\/\//g, '/'),
|
2018-03-17 07:23:00 +00:00
|
|
|
config.entry
|
2017-08-25 12:01:16 +00:00
|
|
|
]
|
2018-02-26 10:32:40 +00:00
|
|
|
|
|
|
|
// HMR
|
|
|
|
config.plugins.push(new webpack.HotModuleReplacementPlugin())
|
2017-06-15 14:53:00 +00:00
|
|
|
}
|
2017-06-15 22:19:53 +00:00
|
|
|
|
|
|
|
// --------------------------------------
|
|
|
|
// Production specific config
|
|
|
|
// --------------------------------------
|
2017-06-11 14:17:36 +00:00
|
|
|
if (!this.options.dev) {
|
2018-01-25 08:01:48 +00:00
|
|
|
// Chunks size limit
|
|
|
|
// https://webpack.js.org/plugins/aggressive-splitting-plugin/
|
|
|
|
if (this.options.build.maxChunkSize) {
|
|
|
|
config.plugins.push(
|
|
|
|
new webpack.optimize.AggressiveSplittingPlugin({
|
|
|
|
minSize: this.options.build.maxChunkSize,
|
|
|
|
maxSize: this.options.build.maxChunkSize
|
|
|
|
})
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2018-03-13 12:06:12 +00:00
|
|
|
// https://github.com/webpack-contrib/webpack-stylish
|
|
|
|
if (!this.options.dev) {
|
|
|
|
config.plugins.push(new StylishPlugin())
|
|
|
|
}
|
|
|
|
|
2017-06-15 22:19:53 +00:00
|
|
|
// Webpack Bundle Analyzer
|
|
|
|
if (this.options.build.analyze) {
|
2018-01-13 05:22:11 +00:00
|
|
|
config.plugins.push(
|
|
|
|
new BundleAnalyzerPlugin(Object.assign({}, this.options.build.analyze))
|
|
|
|
)
|
2017-06-15 22:19:53 +00:00
|
|
|
}
|
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-10-20 10:05:22 +00:00
|
|
|
const isDev = this.options.dev
|
2017-08-21 20:21:16 +00:00
|
|
|
const extendedConfig = this.options.build.extend.call(this, config, {
|
2017-10-20 10:05:22 +00:00
|
|
|
isDev,
|
2016-12-27 13:54:10 +00:00
|
|
|
isClient: true
|
|
|
|
})
|
2018-03-11 21:28:56 +00:00
|
|
|
|
2017-08-21 20:21:16 +00:00
|
|
|
// Only overwrite config when something is returned for backwards compatibility
|
|
|
|
if (extendedConfig !== undefined) {
|
|
|
|
config = extendedConfig
|
|
|
|
}
|
2016-12-27 13:54:10 +00:00
|
|
|
}
|
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
|
|
|
}
|