summaryrefslogtreecommitdiff
path: root/web-ui/webpack.config.js
diff options
context:
space:
mode:
authorAnike Arni <aarni@thoughtworks.com>2017-02-01 16:41:11 -0200
committerAnike Arni <aarni@thoughtworks.com>2017-02-01 16:41:11 -0200
commit50efd8f59b814bc27e870ff3b09372b0d717b926 (patch)
treebfb09a35af6fa82a232eeb702dc069f5f966d04a /web-ui/webpack.config.js
parentc141c30b068e91f58b0c64649462589f7442a2df (diff)
[#922] Add react
with @tayanefernandes
Diffstat (limited to 'web-ui/webpack.config.js')
-rw-r--r--web-ui/webpack.config.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/web-ui/webpack.config.js b/web-ui/webpack.config.js
index 720a9a2e..f0f605b0 100644
--- a/web-ui/webpack.config.js
+++ b/web-ui/webpack.config.js
@@ -6,7 +6,7 @@ var aliases = require('./config/alias-webpack');
module.exports = {
entry: {
app: './app/js/index.js',
- recovery: './app/js/account_recovery.js',
+ account_recovery: './app/js/account_recovery.js',
sandbox: './app/js/sandbox.js'
},
node: { fs: 'empty' },
@@ -25,7 +25,7 @@ module.exports = {
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
loader: 'babel',
- query: { presets: ['es2015']}
+ query: { presets: ['es2015', 'react']}
}
]
},