From 5deeca4b68ad62e93c24a422b0d182e788cab1d7 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Thu, 15 Jun 2017 13:23:06 +0200 Subject: [PATCH] Fix lodash import bug in webpack config --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index a23e78027b..61a7e4196d 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,7 +1,7 @@ /** * This is to generate the umd bundle only */ -const lodash = require('lodash'); +const _ = require('lodash'); const webpack = require('webpack'); const path = require('path'); const production = process.env.NODE_ENV === 'production';