mirror of
https://github.com/Theaninova/Bampy.git
synced 2025-12-11 03:56:17 +00:00
11 lines
225 B
TypeScript
11 lines
225 B
TypeScript
import { sveltekit } from '@sveltejs/kit/vite';
|
|
import wasm from 'vite-plugin-wasm';
|
|
import { defineConfig } from 'vite';
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit(), wasm()],
|
|
ssr: {
|
|
noExternal: ['three']
|
|
}
|
|
});
|