mirror of
https://github.com/loro-dev/loro.git
synced 2024-11-28 17:41:49 +00:00
7d2826cfe9
* doc: wasm * doc: add wasm example * doc: typedoc * fix: merge * fix: dep * fix --------- Co-authored-by: Zixuan Chen <remch183@outlook.com>
8 lines
178 B
TypeScript
8 lines
178 B
TypeScript
/// <reference types="vitest" />
|
|
import wasm from "vite-plugin-wasm";
|
|
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
plugins: [wasm()],
|
|
// test: {},
|
|
});
|