Last active
December 17, 2019 20:35
-
-
Save teamco/2dabcc2a3cbb9155c94c942a4f33f116 to your computer and use it in GitHub Desktop.
webpack.server.config.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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