mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
87 lines
1.9 KiB
JavaScript
87 lines
1.9 KiB
JavaScript
import path from 'path'
|
|
import fs from 'fs'
|
|
|
|
import webpack from 'webpack'
|
|
import nodeExternals from 'webpack-node-externals'
|
|
|
|
import BaseConfig from './base'
|
|
import VueSSRServerPlugin from './plugins/vue/server'
|
|
|
|
export default class WebpackServerConfig extends BaseConfig {
|
|
constructor(builder) {
|
|
super(builder, { name: 'server', isServer: true })
|
|
}
|
|
|
|
devtool() {
|
|
return 'cheap-source-map'
|
|
}
|
|
|
|
env() {
|
|
return Object.assign(super.env(), {
|
|
'process.env.VUE_ENV': JSON.stringify('server'),
|
|
'process.browser': false,
|
|
'process.client': false,
|
|
'process.server': true
|
|
})
|
|
}
|
|
|
|
optimization() {
|
|
return {
|
|
splitChunks: false,
|
|
minimizer: []
|
|
}
|
|
}
|
|
|
|
plugins() {
|
|
const plugins = super.plugins()
|
|
plugins.push(
|
|
new VueSSRServerPlugin({
|
|
filename: 'server-bundle.json'
|
|
}),
|
|
new webpack.DefinePlugin(this.env())
|
|
)
|
|
return plugins
|
|
}
|
|
|
|
config() {
|
|
const config = super.config()
|
|
|
|
Object.assign(config, {
|
|
target: 'node',
|
|
node: false,
|
|
entry: {
|
|
app: [path.resolve(this.options.buildDir, 'server.js')]
|
|
},
|
|
output: Object.assign({}, config.output, {
|
|
filename: 'server-bundle.js',
|
|
libraryTarget: 'commonjs2'
|
|
}),
|
|
performance: {
|
|
hints: false,
|
|
maxAssetSize: Infinity
|
|
},
|
|
externals: []
|
|
})
|
|
|
|
// https://webpack.js.org/configuration/externals/#externals
|
|
// https://github.com/liady/webpack-node-externals
|
|
// https://vue-loader.vuejs.org/migrating.html#ssr-externals
|
|
this.options.modulesDir.forEach((dir) => {
|
|
if (fs.existsSync(dir)) {
|
|
config.externals.push(
|
|
nodeExternals({
|
|
whitelist: [
|
|
/\.css$/,
|
|
/\?vue&type=style/,
|
|
...this.options.build.transpile
|
|
],
|
|
modulesDir: dir
|
|
})
|
|
)
|
|
}
|
|
})
|
|
|
|
return config
|
|
}
|
|
}
|