From 17a7a617fd6172c078506059658be1be70e1fc59 Mon Sep 17 00:00:00 2001 From: jung-geun Date: Tue, 12 May 2026 18:49:48 +0900 Subject: [PATCH] =?UTF-8?q?fix(web):=20custom=20domain=20=EB=8C=80?= =?UTF-8?q?=EC=9D=91=20=E2=80=94=20base=20'/'=20=EB=B3=80=EA=B2=BD=20?= =?UTF-8?q?=EB=B0=8F=20CNAME=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Vite base를 '/NFD2NFC/'에서 '/'로 변경하고 web/public/CNAME을 추가해 nfd2nfc.pieroot.xyz에서 자산 404 및 배포 후 custom domain 초기화 문제를 수정한다. Co-Authored-By: Claude Opus 4.7 --- web/public/CNAME | 1 + web/vite.config.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 web/public/CNAME diff --git a/web/public/CNAME b/web/public/CNAME new file mode 100644 index 0000000..02cdd95 --- /dev/null +++ b/web/public/CNAME @@ -0,0 +1 @@ +nfd2nfc.pieroot.xyz diff --git a/web/vite.config.ts b/web/vite.config.ts index 67b93a0..ffc2b0b 100644 --- a/web/vite.config.ts +++ b/web/vite.config.ts @@ -4,7 +4,7 @@ import { resolve } from 'path'; export default defineConfig({ root: __dirname, - base: '/NFD2NFC/', + base: '/', plugins: [react()], build: { outDir: resolve(__dirname, '../dist-web'),