Skip to content

Commit

Permalink
Fix #82
Browse files Browse the repository at this point in the history
  • Loading branch information
icflorescu committed Jan 27, 2024
1 parent 795c1e3 commit 1cb3203
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion examples/websocket/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"scripts": {
"dev": "vite --port 3003 --clearScreen false",
"build": "vite build",
"preview": "vite preview --port 3003",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
Expand Down
4 changes: 2 additions & 2 deletions examples/websocket/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { sveltekit } from '@sveltejs/kit/vite';
import type { UserConfig } from 'vite';

// import { vitePluginTrpcWebSocket } from 'trpc-sveltekit/websocket';
import { vitePluginTrpcWebSocket } from '../../package/src/websocket';
import { vitePluginTrpcWebSocket } from 'trpc-sveltekit/websocket';
// import { vitePluginTrpcWebSocket } from '../../package/src/websocket';

const config: UserConfig = {
plugins: [sveltekit(), vitePluginTrpcWebSocket]
Expand Down

0 comments on commit 1cb3203

Please sign in to comment.