summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorJacob Schatz <jschatz1@gmail.com>2017-04-08 00:18:37 -0400
committerLuke "Jared" Bennett <lbennett@gitlab.com>2017-04-10 14:56:43 +0100
commitef07200cd0f059a2e0493779263aa526a2ade2e3 (patch)
tree0d3e727d510998b7af7e45648ef72cfb14161878 /config
parentacea881bb012cce0b59f3d5874a630b16d0caaef (diff)
downloadgitlab-ce-ef07200cd0f059a2e0493779263aa526a2ade2e3.tar.gz
Get initial sql values back from file which is database
Diffstat (limited to 'config')
-rw-r--r--config/webpack.config.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js
index 42638d47cfa..bc4126bce02 100644
--- a/config/webpack.config.js
+++ b/config/webpack.config.js
@@ -15,6 +15,10 @@ var DEV_SERVER_LIVERELOAD = process.env.DEV_SERVER_LIVERELOAD !== 'false';
var WEBPACK_REPORT = process.env.WEBPACK_REPORT;
var config = {
+ // because sqljs requires fs.
+ node: {
+ fs: "empty"
+ },
context: path.join(ROOT_PATH, 'app/assets/javascripts'),
entry: {
common: './commons/index.js',
@@ -118,6 +122,7 @@ var config = {
'merge_conflicts',
'notebook_viewer',
'pdf_viewer',
+ 'balsamiq_viewer',
'vue_pipelines',
],
minChunks: function(module, count) {