From 2e5bf3bb5147c021688be2e7bbdeaa7b5dfc8739 Mon Sep 17 00:00:00 2001 From: dwelle <5153846+dwelle@users.noreply.github.com> Date: Mon, 23 Feb 2026 22:20:27 +0100 Subject: [PATCH] attempt to fix next-js example deploy issue --- examples/with-nextjs/vercel.json | 3 ++- examples/with-script-in-browser/vercel.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/with-nextjs/vercel.json b/examples/with-nextjs/vercel.json index bd885f4a5f..2e96939c8b 100644 --- a/examples/with-nextjs/vercel.json +++ b/examples/with-nextjs/vercel.json @@ -1,3 +1,4 @@ { - "outputDirectory": "build" + "outputDirectory": "build", + "installCommand": "yarn install && yarn --cwd ../../ install" } diff --git a/examples/with-script-in-browser/vercel.json b/examples/with-script-in-browser/vercel.json index 15014b37c1..a56d6c61e8 100644 --- a/examples/with-script-in-browser/vercel.json +++ b/examples/with-script-in-browser/vercel.json @@ -1,5 +1,5 @@ { "outputDirectory": "dist", - "installCommand": "yarn install", + "installCommand": "yarn install && yarn --cwd ../../ install", "buildCommand": "yarn build:packages && yarn build" }