This commit is contained in:
2026-02-10 01:29:55 +01:00
parent 7020a6a339
commit 5290560d68
8 changed files with 34 additions and 9 deletions

View File

@@ -4,9 +4,9 @@
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --port 3000",
"build": "next build",
"start": "next start --port 3000",
"dev": "bun --env-file=../../.env next dev --port 3000",
"build": "bun --env-file=../../.env next build",
"start": "bun --env-file=../../.env next start --port 3000",
"lint": "biome check src",
"typecheck": "tsc -p tsconfig.json --noEmit"
},