chore: add basic "benchmark" pkg

This commit is contained in:
2025-07-12 20:13:48 +02:00
parent 4e0730d5d6
commit cb7971814d
12 changed files with 912 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import wasm from "vite-plugin-wasm";
import topLevelAwait from "vite-plugin-top-level-await";
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), wasm(), topLevelAwait()],
});