summaryrefslogtreecommitdiff
path: root/web-ui/webpack.config.js
diff options
context:
space:
mode:
authorAnike Arni <anikarni@gmail.com>2017-02-02 18:14:53 -0200
committerGitHub <noreply@github.com>2017-02-02 18:14:53 -0200
commit84c5fc7871206c74bb50df2f618992b0d57ca397 (patch)
treefb148b22b2c6c1ca7cc30c5acc83d781704ade87 /web-ui/webpack.config.js
parent98abd30f1ecf7c8d6ef3d5ecce90396a2868a1fc (diff)
parent1a37dcd2dc8a02eda2a0cc3f90521b0ebc1c9198 (diff)
Merge pull request #958 from pixelated/backup-email-page
Adding react initial configuration
Diffstat (limited to 'web-ui/webpack.config.js')
-rw-r--r--web-ui/webpack.config.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/web-ui/webpack.config.js b/web-ui/webpack.config.js
index 99162908..f0f605b0 100644
--- a/web-ui/webpack.config.js
+++ b/web-ui/webpack.config.js
@@ -6,6 +6,7 @@ var aliases = require('./config/alias-webpack');
module.exports = {
entry: {
app: './app/js/index.js',
+ account_recovery: './app/js/account_recovery.js',
sandbox: './app/js/sandbox.js'
},
node: { fs: 'empty' },
@@ -24,7 +25,7 @@ module.exports = {
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
loader: 'babel',
- query: { presets: ['es2015']}
+ query: { presets: ['es2015', 'react']}
}
]
},