File tree 3 files changed +1
-24
lines changed
3 files changed +1
-24
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ export type { PageContextGetPageAssets }
5
5
6
6
import {
7
7
assert ,
8
- normalizePath ,
9
8
prependBase ,
10
9
assertPosixPath ,
11
10
toPosixPath ,
@@ -103,7 +102,7 @@ async function getPageAssets(
103
102
104
103
pageAssets = pageAssets . map ( ( pageAsset ) => {
105
104
const baseServerAssets = pageContext . _baseAssets || pageContext . _baseServer
106
- pageAsset . src = prependBase ( normalizePath ( pageAsset . src ) , baseServerAssets )
105
+ pageAsset . src = prependBase ( toPosixPath ( pageAsset . src ) , baseServerAssets )
107
106
return pageAsset
108
107
} )
109
108
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ export * from '../../utils/isBrowser.mjs'
12
12
export * from '../../utils/isPlainObject.mjs'
13
13
export * from '../../utils/isPromise.mjs'
14
14
export * from '../../utils/hasProp.mjs'
15
- export * from '../../utils/normalizePath.mjs'
16
15
export * from '../../utils/parseUrl.mjs'
17
16
export * from '../../utils/slice.mjs'
18
17
export * from '../../utils/sorter.mjs'
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments