Skip to content

Commit

Permalink
change default port of apps
Browse files Browse the repository at this point in the history
  • Loading branch information
leomotors committed Dec 24, 2024
1 parent ca9ecc6 commit d9cd4b1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/storybook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "storybook dev -p 6006",
"dev": "storybook dev -p 5342",
"build": "storybook build",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "eslint . && prettier --check \"src/**/*.mdx\"",
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"dev": "vite dev --clearScreen false",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
Expand Down
5 changes: 4 additions & 1 deletion apps/web/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ export default defineConfig({
},
},
server: {
port: 5173,
port: 5343,
fs: {
allow: ['../../packages/ui/src'],
},
},
preview: {
port: 4343,
},
})

0 comments on commit d9cd4b1

Please sign in to comment.