From 3aa4e76af412e6267b3f43866337faa66dcb1567 Mon Sep 17 00:00:00 2001 From: DieselTech <30128380+DieselTech@users.noreply.github.com> Date: Sun, 17 Nov 2024 17:44:49 -0500 Subject: [PATCH] Update nextjs.yml remove `static_site_generator` as per https://github.com/actions/configure-pages/issues/107 --- .github/workflows/nextjs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nextjs.yml b/.github/workflows/nextjs.yml index adf29af..e5b557b 100644 --- a/.github/workflows/nextjs.yml +++ b/.github/workflows/nextjs.yml @@ -40,12 +40,12 @@ jobs: cache: "npm" - name: Setup Pages uses: actions/configure-pages@v5 - with: + # with: # Automatically inject basePath in your Next.js configuration file and disable # server side image optimization (https://nextjs.org/docs/api-reference/next/image#unoptimized). # # You may remove this line if you want to manage the configuration yourself. - static_site_generator: next +# static_site_generator: next - name: Install dependencies run: npm ci --prefer-offline - name: Build with Next.js