diff options
| author | Fuwn <[email protected]> | 2023-10-29 21:21:10 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-10-29 21:29:08 -0700 |
| commit | 2ac499695aa89b68863c0e34c6237a833ec0e03b (patch) | |
| tree | 78af4f3f23061acfa6382b7129e866f55389f8ec /vite.config.ts | |
| parent | ci(docker): only copy needed (diff) | |
| download | due.moe-2ac499695aa89b68863c0e34c6237a833ec0e03b.tar.xz due.moe-2ac499695aa89b68863c0e34c6237a833ec0e03b.zip | |
feat(badges): websocket loading
Diffstat (limited to 'vite.config.ts')
| -rw-r--r-- | vite.config.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vite.config.ts b/vite.config.ts index bbf8c7da..887adf2e 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,6 +1,7 @@ import { sveltekit } from '@sveltejs/kit/vite'; import { defineConfig } from 'vite'; +import { webSocketServer } from '$lib/websocket'; export default defineConfig({ - plugins: [sveltekit()] + plugins: [sveltekit(), webSocketServer] }); |