Skip to content

Commit

Permalink
chore(root): specify server ports
Browse files Browse the repository at this point in the history
  • Loading branch information
tszhong0411 committed Jul 26, 2024
1 parent 527cb8c commit d94a7fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"dev": "concurrently \"mdx dev\" \"next dev -p 3002\"",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint --fix .",
"start": "next start",
"start": "next start -p 3002",
"type-check": "tsc --noEmit"
},
"dependencies": {
Expand Down
4 changes: 2 additions & 2 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"build": "mdx build && dotenv -e ../../.env.local -- next build",
"bundle-analyzer": "cross-env ANALYZE=true pnpm run build",
"clean": "rm -rf .next .turbo .mdx test-results playwright-report",
"dev": "concurrently \"mdx dev\" \"dotenv -e ../../.env.local -- next dev\"",
"dev": "concurrently \"mdx dev\" \"dotenv -e ../../.env.local -- next dev -p 3000\"",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint --fix .",
"start": "dotenv -e ../../.env.local -- next start",
"start": "dotenv -e ../../.env.local -- next start -p 3000",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"type-check": "tsc --noEmit"
Expand Down

0 comments on commit d94a7fa

Please sign in to comment.