Fix the webpack config to include assets in the build

This commit is contained in:
Travis Ralston 2018-03-31 17:46:33 -06:00
parent d34bc05f60
commit f6ec58e9d2

View File

@ -6,7 +6,7 @@ var HtmlWebpackPlugin = require('html-webpack-plugin');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var CopyWebpackPlugin = require('copy-webpack-plugin');
var isProd = process.env.npm_lifecycle_event === 'build';
var isProd = process.env.npm_lifecycle_event.startsWith('build');
module.exports = function () {
var config = {};