feat: Replaced Monaco diff editor with Pierre/diffs for better performance

This commit is contained in:
Bohdan Triapitsyn
2025-12-14 02:29:46 +02:00
parent 2d98e8b2b3
commit 0b92bbc487
14 changed files with 516 additions and 900 deletions
@@ -0,0 +1,5 @@
import WorkerUrl from '@pierre/diffs/worker/worker.js?worker&url';
export function workerFactory(): Worker {
return new Worker(WorkerUrl, { type: 'module' });
}