From 8d87312d9a8109b1e48d4c4b9ace87df934e4ec3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?John=20Molakvo=C3=A6=20=28skjnldsv=29?= Date: Mon, 7 Oct 2019 16:28:10 +0200 Subject: [PATCH] Do not follow symlinks with webpack MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ (skjnldsv) --- webpack.common.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)) -- 2.39.5