8 lines
255 B
TypeScript
8 lines
255 B
TypeScript
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()],
|
|
});
|