From 2248514584ab6cf04c9086eff4f46f2687544596 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Mon, 12 Jun 2017 18:49:57 +0200 Subject: Change UMD bundle name --- webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'webpack.config.js') diff --git a/webpack.config.js b/webpack.config.js index 3295c59c6..a23e78027 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -7,10 +7,10 @@ const path = require('path'); const production = process.env.NODE_ENV === 'production'; let entry = { - '0x': './src/index.ts', + 'index': './src/index.ts', }; if (production) { - entry = _.assign({}, entry, {'0x.min': './src/index.ts'}); + entry = _.assign({}, entry, {'index.min': './src/index.ts'}); } module.exports = { -- cgit v1.2.3