From f6885fecfaa511f2794b8426950a3a41fe03982d Mon Sep 17 00:00:00 2001 From: Davide Scaini Date: Sun, 26 Apr 2026 15:05:33 +0200 Subject: [PATCH] fix(mobile): use split/join for import() patch, gate behind Chrome<63 check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The regex /\bimport\(/g inside a template literal corrupts \b into a backspace and \( into (, producing an unterminated-group SyntaxError in the WebView. Use split().join() instead — no escape sequences, no corruption. Modern WebViews (Chrome 63+) keep the original clean