Skip to content

Commit d6ec058

Browse files
committed
feat: Binds Vite dev server to all interfaces
Updates the Vite development server configuration to listen on all available network interfaces (0.0.0.0). This makes the development server accessible from other devices on the same network, which improves the development experience for teams collaborating on the project.
1 parent 2a3d057 commit d6ec058

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/server/webui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "0.0.1",
55
"type": "module",
66
"scripts": {
7-
"dev": "vite dev & storybook dev -p 6006 --ci",
7+
"dev": "vite dev --host 0.0.0.0 & storybook dev -p 6006 --ci",
88
"build": "vite build && ./scripts/post-build-cleanup.sh",
99
"preview": "vite preview",
1010
"prepare": "svelte-kit sync || echo ''",

0 commit comments

Comments
 (0)