We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
base
1 parent 4309755 commit 2476391Copy full SHA for 2476391
packages/vite/src/node/config.ts
@@ -1418,7 +1418,7 @@ export async function resolveConfig(
1418
inlineConfig,
1419
root: resolvedRoot,
1420
base,
1421
- decodedBase: decodeURI(base),
+ decodedBase: decodeBase(base),
1422
rawBase: resolvedBase,
1423
publicDir: resolvedPublicDir,
1424
cacheDir,
@@ -1678,6 +1678,16 @@ export function resolveBaseUrl(
1678
return base
1679
}
1680
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
+
1691
export function sortUserPlugins(
1692
plugins: (Plugin | Plugin[])[] | undefined,
1693
): [Plugin[], Plugin[], Plugin[]] {
0 commit comments