Release NVIDIA WakeWord Trainer v22

This commit is contained in:
MasterPhooey
2026-08-02 20:46:04 -05:00
parent 2b1320f1f3
commit 2a88090b85
37 changed files with 11685 additions and 3628 deletions

11
frontend/src/main.ts Normal file
View File

@@ -0,0 +1,11 @@
import { createApp } from "vue";
import TrainerApp from "./TrainerApp.vue";
import "./trainer.css";
const root = document.getElementById("trainer-app");
if (!root) {
throw new Error("Missing #trainer-app mount point");
}
createApp(TrainerApp).mount(root);