Skip to content

Commit

Permalink
🔧 Update BrowserSync port configuration from 8000 to 3000
Browse files Browse the repository at this point in the history
  • Loading branch information
usagizmo committed Dec 6, 2024
1 parent 769eba7 commit 260aef7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ pnpm format # root: Format project-words.txt + prettier --write
- `apps/web/` - SvelteKit application
- `5173`: Development server
- `apps/mockup/` - Static site
- `8000`: BrowserSync server
- `3000`: BrowserSync server
- `49160`: Express server

## Registering environment variables for GitHub / Vercel
Expand Down
2 changes: 1 addition & 1 deletion apps/mockup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A starting point for building a static site.

```bash
pnpm build # Output `public/styles.css`
pnpm dev # Watch app.css and launch browser-sync server on port 8000
pnpm dev # Watch app.css and launch browser-sync server on port 3000
pnpm lint # markuplint + cspell
pnpm test # Check links (href/src) + image file names
pnpm format # Format with `prettier`
Expand Down
2 changes: 1 addition & 1 deletion apps/mockup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"build": "tailwindcss -i ./app.css -o ./public/styles.css --minify",
"dev:tailwind": "tailwindcss -i ./app.css -o ./public/styles.css --watch",
"dev:server": "browser-sync start --server './public/' --files './public/' --startPath '/' --port 8000",
"dev:server": "browser-sync start --server './public/' --files './public/' --startPath '/'",
"dev": "concurrently pnpm:dev:*",
"lint:markup": "markuplint --config ../../.markuplintrc.cjs \"**\"",
"lint:js": "eslint .",
Expand Down

0 comments on commit 260aef7

Please sign in to comment.