From 86d03dea6d34f570e482381da29df79585756654 Mon Sep 17 00:00:00 2001 From: oldmud0 Date: Sat, 19 May 2018 01:36:33 -0500 Subject: Fix code broken from refactoring --- webpack.config.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'webpack.config.js') diff --git a/webpack.config.js b/webpack.config.js index 48f638c..98d96d0 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,7 +1,10 @@ module.exports = { - entry: './webAO/ui.js', + entry: { + ui: './webAO/ui.js', + client: './webAO/client.js' + }, output: { - filename: './webAO/ui.b.js' + filename: '[name].b.js' }, module: { rules: [ @@ -16,5 +19,7 @@ module.exports = { } } ] - } + }, + + devtool: 'source-map' } \ No newline at end of file -- cgit