Skip to content

Instantly share code, notes, and snippets.

@teamco
Last active December 17, 2019 20:35
Show Gist options
  • Select an option

  • Save teamco/2dabcc2a3cbb9155c94c942a4f33f116 to your computer and use it in GitHub Desktop.

Select an option

Save teamco/2dabcc2a3cbb9155c94c942a4f33f116 to your computer and use it in GitHub Desktop.
webpack.server.config.js
const path = require('path');
const nodeExternals = require('webpack-node-externals');
module.exports = (env, argv) => {
const SERVER_PATH = (argv.mode === 'production') ?
'./app/javascript/server/server-prod.js' :
'./app/javascript/server/server-dev.js';
return ({
entry: {
server: SERVER_PATH
},
output: {
path: path.join(__dirname, 'dist'),
publicPath: '/',
filename: '[name].js'
},
target: 'node',
node: {
// Need this when working with express, otherwise the build fails
__dirname: false, // if you don't put this is, __dirname
__filename: false // and __filename return blank or /
},
externals: [nodeExternals()], // Need this to avoid error when working with Express
module: {
rules: [
{
// Transpiles ES6-8 into ES5
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader'
}
}
]
}
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment