feat: improve hash functions
This commit is contained in:
@@ -2,9 +2,20 @@ import { sveltekit } from '@sveltejs/kit/vite'
|
||||
import { defineConfig } from 'vite'
|
||||
import glsl from "vite-plugin-glsl";
|
||||
import wasm from "vite-plugin-wasm";
|
||||
import comlink from 'vite-plugin-comlink';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [sveltekit(), glsl(), wasm()],
|
||||
plugins: [
|
||||
comlink(),
|
||||
sveltekit(),
|
||||
glsl(),
|
||||
wasm()
|
||||
],
|
||||
worker: {
|
||||
plugins: () => ([
|
||||
comlink()
|
||||
])
|
||||
},
|
||||
ssr: {
|
||||
noExternal: ['three'],
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user