grub/vite.config.ts

9 lines
255 B
TypeScript
Raw Normal View History

2023-08-10 21:10:48 +00:00
import { defineConfig } from "vite";
import wasm from "vite-plugin-wasm";
import topLevelAwait from "vite-plugin-top-level-await";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react(), wasm(), topLevelAwait()],
});