refactor: Remove babel/register for instant production server startup

This commit is contained in:
Tom Moor
2020-08-23 19:10:16 -07:00
parent 70838918c3
commit e8719340d1
13 changed files with 305 additions and 285 deletions

View File

@@ -8,7 +8,7 @@ commonWebpackConfig = require('./webpack.config');
productionWebpackConfig = Object.assign(commonWebpackConfig, {
output: {
path: path.join(__dirname, 'dist'),
path: path.join(__dirname, 'build/app'),
filename: '[name].[contenthash].js',
publicPath: '/static/',
},