humus-old/webpack.server.config.js
2019-04-14 20:39:27 -05:00

37 lines
867 B
JavaScript

const path = require('path');
const nodeExternals = require('webpack-node-externals');
const StartServerPlugin = require('start-server-webpack-plugin');
const config = require('./webpack.common.config');
config.entry = {
server: [
'source-map-support/register',
'@babel/polyfill',
path.join(__dirname, 'register-traits.js'),
'@avocado/behavior/item/initialize',
path.join(__dirname, 'server', 'index.js'),
],
};
config.externals = [
nodeExternals({
whitelist: /@avocado/,
}),
];
config.module.rules[1].use.options.paths.push(
path.resolve(__dirname, 'server'),
);
const nodeArgs = [];
if (process.argv.find((arg) => '--prof' === arg)) {
nodeArgs.push('--prof');
}
config.plugins.push(new StartServerPlugin({
name: 'server.js',
nodeArgs: nodeArgs,
restartable: false,
}));
config.target = 'node';
module.exports = config;