2017-01-11 19:14:59 +00:00
|
|
|
import webpack from 'webpack'
|
2017-04-27 08:54:18 +00:00
|
|
|
import VueSSRServerPlugin from 'vue-server-renderer/server-plugin'
|
2017-05-24 13:04:17 +00:00
|
|
|
import nodeExternals from 'webpack-node-externals'
|
|
|
|
import { each } from 'lodash'
|
2017-01-11 19:14:59 +00:00
|
|
|
import { resolve } from 'path'
|
2017-07-31 23:28:53 +00:00
|
|
|
import { existsSync } from 'fs'
|
2017-06-12 20:32:34 +00:00
|
|
|
import base from './base.config.js'
|
2016-11-07 01:34:58 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Webpack Server Config
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
*/
|
2017-10-30 16:51:11 +00:00
|
|
|
export default function webpackServerConfig() {
|
2017-08-21 11:16:35 +00:00
|
|
|
let config = base.call(this, 'server')
|
2017-06-15 22:19:53 +00:00
|
|
|
|
2016-11-25 14:37:06 +00:00
|
|
|
// env object defined in nuxt.config.js
|
|
|
|
let env = {}
|
2017-01-11 19:14:59 +00:00
|
|
|
each(this.options.env, (value, key) => {
|
2017-09-05 09:15:01 +00:00
|
|
|
env['process.env.' + key] = (['boolean', 'number'].indexOf(typeof value) !== -1 ? value : JSON.stringify(value))
|
2016-11-25 14:37:06 +00:00
|
|
|
})
|
|
|
|
|
2016-11-09 22:59:41 +00:00
|
|
|
config = Object.assign(config, {
|
|
|
|
target: 'node',
|
2017-06-19 20:14:13 +00:00
|
|
|
node: false,
|
|
|
|
devtool: 'source-map',
|
2017-06-11 14:17:36 +00:00
|
|
|
entry: resolve(this.options.buildDir, 'server.js'),
|
2016-11-10 18:34:59 +00:00
|
|
|
output: Object.assign({}, config.output, {
|
2016-11-09 22:59:41 +00:00
|
|
|
filename: 'server-bundle.js',
|
|
|
|
libraryTarget: 'commonjs2'
|
|
|
|
}),
|
2017-03-27 16:06:57 +00:00
|
|
|
performance: {
|
2017-07-31 20:46:46 +00:00
|
|
|
hints: false,
|
|
|
|
maxAssetSize: Infinity
|
2017-03-27 16:06:57 +00:00
|
|
|
},
|
2017-07-31 23:28:53 +00:00
|
|
|
externals: [],
|
2016-11-17 21:12:21 +00:00
|
|
|
plugins: (config.plugins || []).concat([
|
2017-04-27 08:54:18 +00:00
|
|
|
new VueSSRServerPlugin({
|
2017-03-22 14:47:34 +00:00
|
|
|
filename: 'server-bundle.json'
|
|
|
|
}),
|
2016-11-25 14:37:06 +00:00
|
|
|
new webpack.DefinePlugin(Object.assign(env, {
|
2017-06-15 22:19:53 +00:00
|
|
|
'process.env.NODE_ENV': JSON.stringify(env.NODE_ENV || (this.options.dev ? 'development' : 'production')),
|
|
|
|
'process.env.VUE_ENV': JSON.stringify('server'),
|
2017-08-23 16:21:27 +00:00
|
|
|
'process.mode': JSON.stringify(this.options.mode),
|
2017-02-28 12:10:58 +00:00
|
|
|
'process.browser': false,
|
2017-10-20 10:05:22 +00:00
|
|
|
'process.client': false,
|
2017-08-17 12:43:51 +00:00
|
|
|
'process.server': true,
|
2017-08-17 12:50:39 +00:00
|
|
|
'process.static': this.isStatic
|
2016-11-25 14:37:06 +00:00
|
|
|
}))
|
2016-11-17 21:12:21 +00:00
|
|
|
])
|
2016-11-09 22:59:41 +00:00
|
|
|
})
|
2017-06-15 22:19:53 +00:00
|
|
|
|
2017-07-31 23:28:53 +00:00
|
|
|
// https://webpack.js.org/configuration/externals/#externals
|
|
|
|
// https://github.com/liady/webpack-node-externals
|
2017-11-24 09:40:01 +00:00
|
|
|
this.options.modulesDir.forEach(dir => {
|
2017-08-10 11:09:25 +00:00
|
|
|
if (existsSync(dir)) {
|
|
|
|
config.externals.push(nodeExternals({
|
|
|
|
// load non-javascript files with extensions, presumably via loaders
|
2017-08-10 11:46:00 +00:00
|
|
|
whitelist: [/es6-promise|\.(?!(?:js|json)$).{1,5}$/i],
|
2017-08-10 11:09:25 +00:00
|
|
|
modulesDir: dir
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
})
|
2017-07-31 23:28:53 +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) {
|
2017-06-15 22:19:53 +00:00
|
|
|
|
2017-03-24 00:28:04 +00:00
|
|
|
}
|
2016-11-09 22:59:41 +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-30 16:51:11 +00:00
|
|
|
get dev() {
|
2017-10-27 10:17:35 +00:00
|
|
|
console.warn('dev has been deprecated in build.extend(), please use isDev') // eslint-disable-line no-console
|
2017-10-20 10:05:22 +00:00
|
|
|
return isDev
|
|
|
|
},
|
|
|
|
isDev,
|
2016-12-27 13:54:10 +00:00
|
|
|
isServer: true
|
|
|
|
})
|
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
|
|
|
|
}
|