mirror of
https://github.com/loro-dev/loro.git
synced 2024-11-28 09:25:36 +00:00
7a19b49acb
* feat: richtext example init * fix: pass richtext event delta consistency check * chore: debug history
9 lines
279 B
TypeScript
9 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()],
|
|
});
|