Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
David Montero Crespo 2026-05-11 11:36:51 -03:00 committed by GitHub
parent 8d8e763724
commit 5c70f09afe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -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(<App />);