From 5644b79336a84d9dc8bd52d7719c92f653a24dd4 Mon Sep 17 00:00:00 2001 From: "Satsuki Akiba (aider)" Date: Wed, 4 Jun 2025 11:14:13 +0900 Subject: [PATCH] feat: fix frontend build error by updating index.html and vite.config.ts --- frontend/index.html | 2 +- frontend/vite.config.ts | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/index.html b/frontend/index.html index 3dc62fe..be2dbf6 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -8,6 +8,6 @@
- + diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts index aafc248..4ea1b90 100644 --- a/frontend/vite.config.ts +++ b/frontend/vite.config.ts @@ -12,5 +12,9 @@ export default defineConfig({ rollupOptions: { input: "index.html", }, + // モジュール解決を明示 + commonjsOptions: { + include: [], + }, }, });