change dev command

This commit is contained in:
Matthias Kretschmann 2024-04-10 16:05:26 +01:00
parent 7f8dca659e
commit 9f598f8cf3
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 3 additions and 3 deletions

View File

@ -154,7 +154,7 @@ cp .env.sample .env
vi .env
npm i
npm start
npm run dev
```
### 🔮 Linting

View File

@ -8,9 +8,9 @@
"author": "Matthias Kretschmann <m@kretschmann.io>",
"type": "module",
"scripts": {
"start": "npm run prebuild && next",
"dev": "npm run prebuild && next dev",
"build": "next build",
"preview": "next start",
"start": "next start",
"export": "npm run prebuild && next export",
"typecheck": "tsc",
"lint:js": "next lint",