ui: remove technical terminology and CLI references from user interface

This commit is contained in:
Tronax 2026-08-16 14:10:51 +02:00
parent 4f8400c480
commit a7fb3efa61
Signed by: Tronax
SSH key fingerprint: SHA256:2pKKXDZucWvaF/GzXNz0FY53EAO1YDLN80bqS+TTz/o
6 changed files with 4 additions and 14 deletions

View file

@ -1,12 +1,5 @@
import { createApp } from 'vue'
import App from './App.vue'
import { store } from '@/game/store'
import { mpgame } from '@/game/mpgame'
import './style.css'
// diagnostic hook (read-only debugging from devtools/automation)
if (typeof window !== 'undefined') {
;(window as unknown as Record<string, unknown>).__trxtd = { store, mpgame }
}
createApp(App).mount('#app')