From 82e0d91987567aebed1854e2d34c5f34ed4546de Mon Sep 17 00:00:00 2001 From: Mayne0213 Date: Wed, 17 Dec 2025 23:25:42 +0900 Subject: [PATCH] FIX(docs): fix build output copy command - Change cp -r build/* /build/ to cp -r build/. /build/ - This ensures all files and directories (including hidden files) are copied - Fixes 403 Forbidden error caused by missing index.html in nginx root --- docusaurus/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docusaurus/deployment.yaml b/docusaurus/deployment.yaml index 40a0c63..760d5af 100644 --- a/docusaurus/deployment.yaml +++ b/docusaurus/deployment.yaml @@ -37,7 +37,7 @@ spec: echo "Building Docusaurus site..." npm run build echo "Copying build output..." - cp -r build/* /build/ + cp -r build/. /build/ echo "Build complete!" volumeMounts: - name: build-output