From 52a6e36dace935046ffb104e2dfecb5da16495ff Mon Sep 17 00:00:00 2001 From: Jun Shindo <46585162+jay-es@users.noreply.github.com> Date: Sun, 9 Feb 2025 23:38:41 +0900 Subject: [PATCH] docs: add troubleshooting section for path with `*` --- guide/troubleshooting.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/guide/troubleshooting.md b/guide/troubleshooting.md index 94816278..1b9bdc85 100644 --- a/guide/troubleshooting.md +++ b/guide/troubleshooting.md @@ -64,6 +64,15 @@ ESM ファイルは [`--experimental-require-module`](https://nodejs.org/docs/la - 一番近い `package.json` に `"type": "module"` を追加する - `vite.config.js` / `vite.config.ts` を `vite.config.mjs` / `vite.config.mts` にファイル名を変更する +### `failed to load config from '/path/to/config*/vite.config.js'` + +> failed to load config from '/path/to/config\*/vite.config.js' +> error when starting dev server: +> Error: Build failed with 1 error: +> error: Must use "outdir" when there are multiple input files + +上記のエラーは、プロジェクトフォルダーへのパスに `*` が含まれている場合に発生することがあります。 esbuild は `*` を glob として扱います。ディレクトリー名を変更して `*` を削除する必要があります。 + ## 開発サーバー ### リクエストがいつまでも終わらない