Skip to content

Commit 2476391

Browse files
authored
feat: show friendly error for malformed base (#19616)
1 parent 4309755 commit 2476391

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

packages/vite/src/node/config.ts

+11-1
Original file line numberDiff line numberDiff line change
@@ -1418,7 +1418,7 @@ export async function resolveConfig(
14181418
inlineConfig,
14191419
root: resolvedRoot,
14201420
base,
1421-
decodedBase: decodeURI(base),
1421+
decodedBase: decodeBase(base),
14221422
rawBase: resolvedBase,
14231423
publicDir: resolvedPublicDir,
14241424
cacheDir,
@@ -1678,6 +1678,16 @@ export function resolveBaseUrl(
16781678
return base
16791679
}
16801680

1681+
function decodeBase(base: string): string {
1682+
try {
1683+
return decodeURI(base)
1684+
} catch {
1685+
throw new Error(
1686+
'The value passed to "base" option was malformed. It should be a valid URL.',
1687+
)
1688+
}
1689+
}
1690+
16811691
export function sortUserPlugins(
16821692
plugins: (Plugin | Plugin[])[] | undefined,
16831693
): [Plugin[], Plugin[], Plugin[]] {

0 commit comments

Comments
 (0)