Skip to content

Commit df86990

Browse files
authoredOct 25, 2022
fix: when the file path is an absolute path, parsing causes parameter loss (#10449)
1 parent 9f268da commit df86990

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed
 

‎packages/vite/src/node/__tests__/utils.spec.ts

+12
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,18 @@ describe('injectQuery', () => {
1818
'C:/User/Vite/Project?direct'
1919
)
2020
})
21+
22+
test('absolute file path', () => {
23+
expect(injectQuery('C:\\test-file.vue', 'direct')).toEqual(
24+
'C:/test-file.vue?direct'
25+
)
26+
})
27+
28+
test('absolute file path with parameters', () => {
29+
expect(
30+
injectQuery('C:\\test-file.vue?vue&type=template&lang.js', 'direct')
31+
).toEqual('C:/test-file.vue?direct&vue&type=template&lang.js')
32+
})
2133
}
2234

2335
test('relative path', () => {

‎packages/vite/src/node/utils.ts

+2-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import os from 'node:os'
33
import path from 'node:path'
44
import { createHash } from 'node:crypto'
55
import { promisify } from 'node:util'
6-
import { URL, URLSearchParams, pathToFileURL } from 'node:url'
6+
import { URL, URLSearchParams } from 'node:url'
77
import { builtinModules, createRequire } from 'node:module'
88
import { promises as dns } from 'node:dns'
99
import { performance } from 'node:perf_hooks'
@@ -326,10 +326,7 @@ export function removeDirectQuery(url: string): string {
326326
export function injectQuery(url: string, queryToInject: string): string {
327327
// encode percents for consistent behavior with pathToFileURL
328328
// see #2614 for details
329-
let resolvedUrl = new URL(url.replace(/%/g, '%25'), 'relative:///')
330-
if (resolvedUrl.protocol !== 'relative:') {
331-
resolvedUrl = pathToFileURL(url)
332-
}
329+
const resolvedUrl = new URL(url.replace(/%/g, '%25'), 'relative:///')
333330
const { search, hash } = resolvedUrl
334331
let pathname = cleanUrl(url)
335332
pathname = isWindows ? slash(pathname) : pathname

0 commit comments

Comments
 (0)