From f01eef297f7f5f3f5967db809ad14dc4db895d97 Mon Sep 17 00:00:00 2001 From: alex Date: Wed, 22 Apr 2026 19:23:58 +0200 Subject: [PATCH] Fix XPBar test: enable automatic JSX transform in babel Co-Authored-By: Claude Opus 4.7 --- babel.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/babel.config.js b/babel.config.js index e200355..96d16bd 100755 --- a/babel.config.js +++ b/babel.config.js @@ -1,6 +1,6 @@ module.exports = { presets: [ '@babel/preset-env', - '@babel/preset-react' + ['@babel/preset-react', { runtime: 'automatic' }] ] };