From 5f52030e67c7beac96146f23d990acd6e6ba930f Mon Sep 17 00:00:00 2001 From: Gabriel Mattos Teixeira dos Santos <129562117+gabrielmatsan@users.noreply.github.com> Date: Sun, 1 Jun 2025 08:46:29 -0300 Subject: [PATCH 1/3] =?UTF-8?q?feat:=20adicionar=20configura=C3=A7=C3=A3o?= =?UTF-8?q?=20do=20Vercel=20para=20o=20projeto?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vercel.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 vercel.json diff --git a/vercel.json b/vercel.json new file mode 100644 index 00000000..478f5464 --- /dev/null +++ b/vercel.json @@ -0,0 +1,6 @@ +{ + "buildCommand": "cd apps/website && pnpm run build", + "installCommand": "pnpm install --frozen-lockfile", + "framework": "vite", + "rootDirectory": "apps/website" +} \ No newline at end of file From 58b4c672d4f6f2ffaa3e7b63f1cb46bfdedbdf7f Mon Sep 17 00:00:00 2001 From: Gabriel Mattos Teixeira dos Santos <129562117+gabrielmatsan@users.noreply.github.com> Date: Sun, 1 Jun 2025 09:01:16 -0300 Subject: [PATCH 2/3] =?UTF-8?q?feat:=20atualizar=20comandos=20de=20build?= =?UTF-8?q?=20e=20instala=C3=A7=C3=A3o=20no=20Vercel?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vercel.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/vercel.json b/vercel.json index 478f5464..4dbedcdb 100644 --- a/vercel.json +++ b/vercel.json @@ -1,6 +1,4 @@ { - "buildCommand": "cd apps/website && pnpm run build", - "installCommand": "pnpm install --frozen-lockfile", - "framework": "vite", - "rootDirectory": "apps/website" + "buildCommand": "pnpm run build --filter=website", + "installCommand": "pnpm install --frozen-lockfile" } \ No newline at end of file From c231d31cc02d871cf3fc02316f056dc434b638bc Mon Sep 17 00:00:00 2001 From: Gabriel Mattos Teixeira dos Santos <129562117+gabrielmatsan@users.noreply.github.com> Date: Sun, 1 Jun 2025 09:07:26 -0300 Subject: [PATCH 3/3] =?UTF-8?q?feat:=20remover=20configura=C3=A7=C3=A3o=20?= =?UTF-8?q?do=20Vercel=20do=20projeto?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vercel.json | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 vercel.json diff --git a/vercel.json b/vercel.json deleted file mode 100644 index 4dbedcdb..00000000 --- a/vercel.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "buildCommand": "pnpm run build --filter=website", - "installCommand": "pnpm install --frozen-lockfile" -} \ No newline at end of file