From 5c70f09afe35e03a38b74bee68dcd1b311b31956 Mon Sep 17 00:00:00 2001 From: David Montero Crespo Date: Mon, 11 May 2026 11:36:51 -0300 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- frontend/src/main.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/main.tsx b/frontend/src/main.tsx index 979be101..cb6f974a 100644 --- a/frontend/src/main.tsx +++ b/frontend/src/main.tsx @@ -20,7 +20,8 @@ import './components/velxio-components/EPaperElement'; import App from './App.tsx'; // Configure monaco-editor for offline use via local static assets -loader.config({ paths: { vs: '/monaco/vs' } }); +const monacoVsPath = `${import.meta.env.BASE_URL}monaco/vs`; +loader.config({ paths: { vs: monacoVsPath } }); createRoot(document.getElementById('root')!).render();