summaryrefslogtreecommitdiffstats
path: root/uidev/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'uidev/webpack.config.js')
-rw-r--r--uidev/webpack.config.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/uidev/webpack.config.js b/uidev/webpack.config.js
index 8c4a4ade9..74ea870ef 100644
--- a/uidev/webpack.config.js
+++ b/uidev/webpack.config.js
@@ -12,6 +12,9 @@ module.exports = {
12 }, 12 },
13 resolve: { 13 resolve: {
14 extensions: ['.tsx', '.ts', '.js'], 14 extensions: ['.tsx', '.ts', '.js'],
15 alias: {
16 react: path.resolve('../node_modules/react'),
17 },
15 }, 18 },
16 mode: 'none', 19 mode: 'none',
17 plugins: [ 20 plugins: [
@@ -19,4 +22,8 @@ module.exports = {
19 template: path.join('src', 'app.html'), 22 template: path.join('src', 'app.html'),
20 }), 23 }),
21 ], 24 ],
25 devServer: {
26 inline: true,
27 port: 8008,
28 },
22}; 29};