From 2c3e3506a438ddfdcb6f1638ce80b7388c7ae135 Mon Sep 17 00:00:00 2001 From: Joo Date: Thu, 9 Nov 2023 00:13:41 +0900 Subject: [PATCH] =?UTF-8?q?next=20export=EB=A5=BC=20build=EB=A1=9C=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/publish_pages.yml | 2 +- next.config.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish_pages.yml b/.github/workflows/publish_pages.yml index 72fa8a338..6b62a245d 100644 --- a/.github/workflows/publish_pages.yml +++ b/.github/workflows/publish_pages.yml @@ -17,7 +17,7 @@ jobs: - name: Install and Build 🔧 run: | npm ci - npm run export + npm run build touch out/.nojekyll - name: Deploy 🚀 diff --git a/next.config.js b/next.config.js index a843cbee0..42c10fddd 100644 --- a/next.config.js +++ b/next.config.js @@ -1,5 +1,6 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + output: 'export', reactStrictMode: true, }