mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-10-01 01:26:08 -04:00
6 lines
129 B
TypeScript
6 lines
129 B
TypeScript
|
import { defineConfig } from 'vite';
|
||
|
import wasm from 'vite-plugin-wasm';
|
||
|
export default defineConfig({
|
||
|
plugins: [wasm()],
|
||
|
});
|