11 lines
254 B
TypeScript
11 lines
254 B
TypeScript
import topLevelAwait from "vite-plugin-top-level-await";
|
|
import wasm from "vite-plugin-wasm";
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
plugins: [wasm(), topLevelAwait()],
|
|
test: {
|
|
environment: "jsdom",
|
|
},
|
|
});
|