diff --git a/frontend/next-env.d.ts b/frontend/next-env.d.ts
index 9edff1c..ce4e94a 100644
--- a/frontend/next-env.d.ts
+++ b/frontend/next-env.d.ts
@@ -1,6 +1,7 @@
///
///
import "./.next/types/routes.d.ts";
+import "./.next/types/root-params.d.ts";
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
diff --git a/frontend/package.json b/frontend/package.json
index 1d71702..799bdeb 100644
--- a/frontend/package.json
+++ b/frontend/package.json
@@ -4,9 +4,9 @@
"packageManager": "bun@1.3.4",
"private": true,
"scripts": {
- "dev": "bun --bun next dev --turbo",
- "build": "bun --bun next build",
- "start": "bun --bun next start",
+ "dev": "next dev --turbo",
+ "build": "next build",
+ "start": "next start",
"lint": "eslint .",
"type-check": "tsc --noEmit",
"test": "bun test",