Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorTim Zallmann <tzallmann@gitlab.com>2018-01-19 12:38:34 +0300
committerPhil Hughes <me@iamphill.com>2018-01-19 12:38:34 +0300
commite79db43d2cf269beec700353e776e92b15ac9af9 (patch)
tree5e4a6ab9b4843c58288c670d5eabe7ff2f31fee1 /config
parentdd633dc48f00f779755370e3849691dc776b5055 (diff)
WebIDE: Fix Commit bugs
Diffstat (limited to 'config')
-rw-r--r--config/webpack.config.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js
index 23784dd2a29..229db11acb2 100644
--- a/config/webpack.config.js
+++ b/config/webpack.config.js
@@ -119,7 +119,12 @@ var config = {
{
test: /\_worker\.js$/,
use: [
- { loader: 'worker-loader' },
+ {
+ loader: 'worker-loader',
+ options: {
+ inline: true
+ }
+ },
{ loader: 'babel-loader' },
],
},