aboutsummaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authoroldmud0 <oldmud0@users.noreply.github.com>2018-05-19 01:36:33 -0500
committeroldmud0 <oldmud0@users.noreply.github.com>2018-05-19 01:36:33 -0500
commit86d03dea6d34f570e482381da29df79585756654 (patch)
treebd837fefcc92d074e8cf2edf6b350196b48395df /webpack.config.js
parentdca5bf29f3ad15f51d47696ad35525c516ca3db6 (diff)
Fix code broken from refactoring
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js11
1 files changed, 8 insertions, 3 deletions
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