From 90ee106407c1871a989b2cea530abfe92e4edfe8 Mon Sep 17 00:00:00 2001 From: Jaifroid Date: Tue, 1 Apr 2025 20:38:08 +0100 Subject: [PATCH] Build more compact code with Babel --- babel.config.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/babel.config.js b/babel.config.js index 95a1c2ab..4ca917e0 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,5 +1,4 @@ const config = { - presets: [ [ '@babel/preset-env', @@ -21,8 +20,8 @@ const config = { } ] ], - exclude: ['node_modules/**'] - + exclude: ['node_modules/**'], + compact: true // Force compacting for large files }; export default config;