summaryrefslogtreecommitdiff
path: root/web-ui/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/webpack.config.js')
-rw-r--r--web-ui/webpack.config.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/web-ui/webpack.config.js b/web-ui/webpack.config.js
index e03f453a..7bacee4a 100644
--- a/web-ui/webpack.config.js
+++ b/web-ui/webpack.config.js
@@ -1,10 +1,12 @@
var path = require('path');
+var webpack = require('webpack');
var CopyWebpackPlugin = require('copy-webpack-plugin');
module.exports = {
entry: './app/js/index.js',
+ node: { fs: 'empty' },
output: {
- path: path.join(__dirname, '/dist/js/'),
+ path: path.join(__dirname, '/app/js/'),
filename: 'bundle.js',
publicPath: '/assets/js/'
},