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

@@ -1,4 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/dev/types/routes.d.ts";
// NOTE: This file should not be edited.
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

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"
},