task(A4.14): make v2 tool path the default (verified e2e without flag)
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* featureFlags – Zentrale Feature-Schalter (Task A4.14).
|
||||
*
|
||||
* V2_TOOLS_ENABLED: Ab v2.0 ist der Plugin-first-Pfad (InteractionDispatcher,
|
||||
* CADDocument, dynamisches Ribbon, V2HistoryPanel) STANDARDMÄSSIG AKTIV.
|
||||
* Opt-out für den Legacy-Pfad: VITE_TOOL_DISPATCHER=legacy setzen.
|
||||
*
|
||||
* Begründung Historie: Vor A4.14 war V2 opt-in ('v2' explizit nötig), weil
|
||||
* noch keine Browser-Verifikation existierte. Die Playwright-Verifikation
|
||||
* (phase-a-verify.test.ts, grün) hat das Risiko entwertet.
|
||||
*/
|
||||
|
||||
/** Ist der V2-Werkzeugpfad (Dispatcher/CADDocument) aktiv? Default: ja. */
|
||||
export const V2_TOOLS_ENABLED: boolean =
|
||||
import.meta.env.VITE_TOOL_DISPATCHER !== 'legacy';
|
||||
Reference in New Issue
Block a user