mirror of
https://github.com/loro-dev/loro.git
synced 2024-11-28 09:25:36 +00:00
10 lines
279 B
TypeScript
10 lines
279 B
TypeScript
|
import { defineConfig } from "vite";
|
||
|
import vue from "@vitejs/plugin-vue";
|
||
|
import wasm from "vite-plugin-wasm";
|
||
|
import topLevelAwait from "vite-plugin-top-level-await";
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [vue(), wasm(), topLevelAwait()],
|
||
|
});
|