summaryrefslogtreecommitdiffstats
path: root/webpack.common.js
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2019-10-07 18:26:35 +0200
committerGitHub <noreply@github.com>2019-10-07 18:26:35 +0200
commitf8d1990eb84eb2b441ad53f47cd1ed36b461d026 (patch)
tree128d550a7faf45fc5d0f5ee96a4fc2bb19a66e0d /webpack.common.js
parenta02a6266061c230faf0fc1ac171df23aa554fd6a (diff)
parent8d87312d9a8109b1e48d4c4b9ace87df934e4ec3 (diff)
downloadnextcloud-server-f8d1990eb84eb2b441ad53f47cd1ed36b461d026.tar.gz
nextcloud-server-f8d1990eb84eb2b441ad53f47cd1ed36b461d026.zip
Do not follow symlinks with webpack (#17448)
Do not follow symlinks with webpack
Diffstat (limited to 'webpack.common.js')
-rw-r--r--webpack.common.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/webpack.common.js b/webpack.common.js
index 2dc69b201a4..c337ebf3766 100644
--- a/webpack.common.js
+++ b/webpack.common.js
@@ -93,6 +93,7 @@ module.exports = []
// make sure to use the handlebar runtime when importing
handlebars: 'handlebars/runtime'
},
- extensions: ['*', '.js', '.vue']
+ extensions: ['*', '.js', '.vue'],
+ symlinks: false
}
}, config))