feat: add UI conformance and launch context

This commit is contained in:
2026-08-18 21:32:25 +02:00
parent 7685a103e8
commit 8a925782ab
35 changed files with 1125 additions and 150 deletions
+12
View File
@@ -0,0 +1,12 @@
import { resolve } from "node:path";
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
root: resolve(import.meta.dirname, "conformance"),
plugins: [react()],
build: {
outDir: resolve(import.meta.dirname, "dist-conformance"),
emptyOutDir: true
}
});