Skip to content

Commit 998303b

Browse files
authored
feat(config): improve bad character warning (#19683)
1 parent 300280d commit 998303b

File tree

3 files changed

+20
-23
lines changed

3 files changed

+20
-23
lines changed

docs/guide/troubleshooting.md

-9
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,6 @@ While it may work using [`--experimental-require-module`](https://nodejs.org/doc
6464
- adding `"type": "module"` to the nearest `package.json`
6565
- renaming `vite.config.js`/`vite.config.ts` to `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-
The error above may occur if the path to your project folder contains `*`, which esbuild treats as a glob. You will need to rename your directory to remove the `*`.
75-
7667
## Dev Server
7768

7869
### Requests are stalled forever

packages/vite/src/node/__tests__/config.spec.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -355,17 +355,17 @@ describe('resolveConfig', () => {
355355
expect(results2.clearScreen).toBe(false)
356356
})
357357

358-
test('resolveConfig with root path including "#" and "?" should warn ', async () => {
358+
test('resolveConfig with root path including "#" and "?" and "*" should warn ', async () => {
359359
expect.assertions(1)
360360

361361
const logger = createLogger('info')
362362
logger.warn = (str) => {
363363
expect(str).to.include(
364-
'Consider renaming the directory to remove the characters',
364+
'Consider renaming the directory / file to remove the characters',
365365
)
366366
}
367367

368-
await resolveConfig({ root: './inc?ud#s', customLogger: logger }, 'build')
368+
await resolveConfig({ root: './inc?ud#s*', customLogger: logger }, 'build')
369369
})
370370
})
371371

packages/vite/src/node/config.ts

+17-11
Original file line numberDiff line numberDiff line change
@@ -881,9 +881,13 @@ export type ResolveFn = (
881881

882882
/**
883883
* Check and warn if `path` includes characters that don't work well in Vite,
884-
* such as `#` and `?`.
884+
* such as `#` and `?` and `*`.
885885
*/
886-
function checkBadCharactersInPath(path: string, logger: Logger): void {
886+
function checkBadCharactersInPath(
887+
name: string,
888+
path: string,
889+
logger: Logger,
890+
): void {
887891
const badChars = []
888892

889893
if (path.includes('#')) {
@@ -892,16 +896,19 @@ function checkBadCharactersInPath(path: string, logger: Logger): void {
892896
if (path.includes('?')) {
893897
badChars.push('?')
894898
}
899+
if (path.includes('*')) {
900+
badChars.push('*')
901+
}
895902

896903
if (badChars.length > 0) {
897904
const charString = badChars.map((c) => `"${c}"`).join(' and ')
898905
const inflectedChars = badChars.length > 1 ? 'characters' : 'character'
899906

900907
logger.warn(
901908
colors.yellow(
902-
`The project root contains the ${charString} ${inflectedChars} (${colors.cyan(
909+
`${name} contains the ${charString} ${inflectedChars} (${colors.cyan(
903910
path,
904-
)}), which may not work when running Vite. Consider renaming the directory to remove the characters.`,
911+
)}), which may not work when running Vite. Consider renaming the directory / file to remove the characters.`,
905912
),
906913
)
907914
}
@@ -1132,7 +1139,7 @@ export async function resolveConfig(
11321139
config.root ? path.resolve(config.root) : process.cwd(),
11331140
)
11341141

1135-
checkBadCharactersInPath(resolvedRoot, logger)
1142+
checkBadCharactersInPath('The project root', resolvedRoot, logger)
11361143

11371144
const configEnvironmentsClient = config.environments!.client!
11381145
configEnvironmentsClient.dev ??= {}
@@ -1797,12 +1804,11 @@ export async function loadConfigFromFile(
17971804
dependencies,
17981805
}
17991806
} catch (e) {
1800-
createLogger(logLevel, { customLogger }).error(
1801-
colors.red(`failed to load config from ${resolvedPath}`),
1802-
{
1803-
error: e,
1804-
},
1805-
)
1807+
const logger = createLogger(logLevel, { customLogger })
1808+
checkBadCharactersInPath('The config path', resolvedPath, logger)
1809+
logger.error(colors.red(`failed to load config from ${resolvedPath}`), {
1810+
error: e,
1811+
})
18061812
throw e
18071813
}
18081814
}

0 commit comments

Comments
 (0)