Skip to content

Commit

Permalink
Changed standard run command to npm run dev
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasGLund99 committed Nov 6, 2024
1 parent 715feca commit 122ff0c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@

### Start server

- `npm run dev:all`
- `npm run dev` (vite + proxy)
- `npm run dev:simple` (vite)
- `npm run proxy` (proxy)

### Test

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev:all": "concurrently \"npm run proxy\" \"npm run dev\"",
"dev": "concurrently \"npm run proxy\" \"npm run dev:simple\"",
"dev:simple": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"format": "prettier --write src",
Expand Down

0 comments on commit 122ff0c

Please sign in to comment.