From 3795207a8143b6d2379ea8346010a7d330ab0708 Mon Sep 17 00:00:00 2001 From: Jaron Heard Date: Sat, 11 May 2024 16:58:39 -0700 Subject: [PATCH 1/2] remove afterSignUpUrl --- apps/web/app/(base)/sign-up/[[...sign-up]]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/app/(base)/sign-up/[[...sign-up]]/page.tsx b/apps/web/app/(base)/sign-up/[[...sign-up]]/page.tsx index 5d636366..39e9c704 100644 --- a/apps/web/app/(base)/sign-up/[[...sign-up]]/page.tsx +++ b/apps/web/app/(base)/sign-up/[[...sign-up]]/page.tsx @@ -7,7 +7,7 @@ export default function Page() { <>
- +
); From 1be3a4845057fad1eaeecd85c07e2117a1a01148 Mon Sep 17 00:00:00 2001 From: Jaron Heard Date: Sat, 11 May 2024 21:24:52 -0700 Subject: [PATCH 2/2] chore: Add "dev:tunnel" script for running tunnel concurrently with dev server --- apps/web/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/package.json b/apps/web/package.json index 0d9f81dd..26e407e1 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -7,6 +7,7 @@ "build": "pnpm with-env next build", "clean": "git clean -xdf .next .turbo node_modules", "dev": "pnpm with-env next dev --turbo", + "dev:tunnel": "concurrently \"pnpm run tunnel\" \"pnpm with-env next dev --turbo\"", "format": "prettier --check . --ignore-path ../../.gitignore", "lint": "eslint", "start": "pnpm with-env next start", @@ -88,4 +89,4 @@ "typescript": "^5.4.5" }, "prettier": "@soonlist/prettier-config" -} +} \ No newline at end of file