From 4705247246ee5668b569a9e1e048e36966b1214d Mon Sep 17 00:00:00 2001 From: "Satsuki Akiba (aider)" Date: Wed, 4 Jun 2025 11:09:21 +0900 Subject: [PATCH] refactor: set vite root to current working directory --- frontend/vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index 1b8af44..4565616 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -12,5 +12,5 @@ export default defineConfig({ input: "index.html", }, }, - root: ".", // index.html を frontend ディレクトリ直下に置いている前提 + root: process.cwd(), // 現在の作業ディレクトリ(frontend)をルートとして明示 });