Skip to content

Commit 52a6e36

Browse files
committed
docs: add troubleshooting section for path with *
1 parent 1ec01bb commit 52a6e36

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

guide/troubleshooting.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,15 @@ ESM ファイルは [`--experimental-require-module`](https://nodejs.org/docs/la
6464
- 一番近い `package.json``"type": "module"` を追加する
6565
- `vite.config.js` / `vite.config.ts``vite.config.mjs` / `vite.config.mts` にファイル名を変更する
6666

67+
### `failed to load config from '/path/to/config*/vite.config.js'`
68+
69+
> failed to load config from '/path/to/config\*/vite.config.js'
70+
> error when starting dev server:
71+
> Error: Build failed with 1 error:
72+
> error: Must use "outdir" when there are multiple input files
73+
74+
上記のエラーは、プロジェクトフォルダーへのパスに `*` が含まれている場合に発生することがあります。 esbuild は `*` を glob として扱います。ディレクトリー名を変更して `*` を削除する必要があります。
75+
6776
## 開発サーバー
6877

6978
### リクエストがいつまでも終わらない

0 commit comments

Comments
 (0)