Skip to content

Commit

Permalink
[playground] Bugfix: change default dev port to 3000 (facebook#6018 v…
Browse files Browse the repository at this point in the history
…ite upgrade regression)
  • Loading branch information
etrepum committed May 4, 2024
1 parent 3e117f8 commit 1db16a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"start": "cross-env NODE_ENV=development concurrently \"npm:collab\" \"npm run dev --prefix packages/lexical-playground\"",
"start:website": "npm run start --prefix packages/lexical-website -- --port 3001",
"start:playground": "npm run start-test-server",
"dev": "npm run dev --prefix packages/lexical-playground",
"dev": "npm run dev --prefix packages/lexical-playground --",
"start-test-server": "npm run preview --prefix packages/lexical-playground -- --port 4000",
"build": "node scripts/build.js",
"build-prod": "npm run clean && npm run build -- --prod",
Expand Down
2 changes: 1 addition & 1 deletion packages/lexical-playground/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 --host",
"dev": "vite --host --port 3000",
"build-dev": "vite build",
"build-prod": "vite build --config vite.prod.config.ts",
"build-vercel": "(cd ../../ && node ./scripts/build.js) && npm run build-dev",
Expand Down

0 comments on commit 1db16a1

Please sign in to comment.