feat: parallel web solving

This commit is contained in:
2026-08-28 18:48:44 +02:00
parent 30ba157d43
commit b3b9db5954
16 changed files with 3605 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { defineConfig } from "vite";
import { svelte } from "@sveltejs/vite-plugin-svelte";
import tailwindcss from "@tailwindcss/vite";
import wasm from "vite-plugin-wasm";
export default defineConfig({
plugins: [wasm(), svelte(), tailwindcss()],
build: {
target: "esnext"
},
worker: {
format: "es",
},
});