feat: stuff

This commit is contained in:
2024-03-03 13:23:44 +01:00
parent c42656f243
commit 805ec392aa
9 changed files with 1787 additions and 85 deletions

View File

@@ -1,9 +1,10 @@
import { sveltekit } from '@sveltejs/kit/vite'
import { defineConfig } from 'vite'
import { sveltekit } from '@sveltejs/kit/vite';
import wasm from 'vite-plugin-wasm';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()],
ssr: {
noExternal: ['three']
}
})
plugins: [sveltekit(), wasm()],
ssr: {
noExternal: ['three']
}
});