From bc1d9e92b78e33431c596170ee27dc03caba21ac Mon Sep 17 00:00:00 2001 From: Lorenzo Corallo Date: Sat, 17 Jan 2026 01:12:52 +0100 Subject: [PATCH 1/5] test new version --- app/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/page.tsx b/app/page.tsx index 879e45b..446ce6f 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -17,6 +17,7 @@ export default function Home() {

To get started, edit the page.tsx file. + NEW VERSION

Looking for a starting point or more instructions? Head over to{" "} From 05810121612cf2c464bf1c152beefa26c21e3017 Mon Sep 17 00:00:00 2001 From: Lorenzo Corallo Date: Sat, 17 Jan 2026 01:14:32 +0100 Subject: [PATCH 2/5] fix: packageManager missing --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index c7cbe98..cfc6f0b 100644 --- a/package.json +++ b/package.json @@ -22,5 +22,6 @@ "eslint-config-next": "16.1.1", "tailwindcss": "^4", "typescript": "^5" - } + }, + "packageManager": "pnpm@10.17.1" } From 5413f24e30a7539cd2b2663eef3a3afaeb48b789 Mon Sep 17 00:00:00 2001 From: Lorenzo Corallo Date: Sat, 17 Jan 2026 01:17:05 +0100 Subject: [PATCH 3/5] permissions fix --- app/page.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/page.tsx b/app/page.tsx index 446ce6f..390b022 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -21,6 +21,7 @@ export default function Home() {

Looking for a starting point or more instructions? Head over to{" "} + fix permissions Date: Sat, 17 Jan 2026 01:35:34 +0100 Subject: [PATCH 4/5] fix: include hidden files (aaaaaaaaa) --- .github/workflows/previewer.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/previewer.yaml b/.github/workflows/previewer.yaml index 3e9222e..4938c6b 100644 --- a/.github/workflows/previewer.yaml +++ b/.github/workflows/previewer.yaml @@ -40,3 +40,4 @@ jobs: path: .next/standalone/ retention-days: 7 if-no-files-found: error + include-hidden-files: true From cf787ddade1f1693e401139c4924ecee1b5d4269 Mon Sep 17 00:00:00 2001 From: Lorenzo Corallo Date: Sat, 17 Jan 2026 02:06:14 +0100 Subject: [PATCH 5/5] fix pnpm behaviour --- .github/workflows/previewer.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/previewer.yaml b/.github/workflows/previewer.yaml index 4938c6b..7a2b37c 100644 --- a/.github/workflows/previewer.yaml +++ b/.github/workflows/previewer.yaml @@ -19,7 +19,14 @@ jobs: with: node-version-file: "package.json" cache: pnpm + + - name: Configure pnpm for standalone build + # needed when using pnpm, otherwise packages are missing in build output + run: | + echo "node-linker=hoisted" >> .npmrc + echo "shamefully-hoist=true" >> .npmrc - run: pnpm install --frozen-lockfile + - run: pnpm build env: NEXT_BASE_PATH: /${{ env.PREVIEW_ID }}