From b229387b787985a589103c19ab854a65e7c8dbe9 Mon Sep 17 00:00:00 2001 From: Webysther Sperandio Date: Thu, 27 Mar 2025 09:42:20 +0100 Subject: [PATCH] Update vue.config.js to use disk and less memory --- vue.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vue.config.js b/vue.config.js index 0e4df226..3178e9dd 100644 --- a/vue.config.js +++ b/vue.config.js @@ -96,5 +96,8 @@ module.exports = { devServer, chainWebpack: config => { config.module.rules.delete('svg'); + config.cache({ + type: 'filesystem', + }); }, };