mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-29 11:59:00 +00:00
9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
![]() |
import { defineConfig } from 'vite'
|
||
|
import react from '@vitejs/plugin-react'
|
||
|
import wasm from "vite-plugin-wasm";
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default defineConfig({
|
||
|
plugins: [react(), wasm()],
|
||
|
})
|