File tree 5 files changed +16
-2
lines changed
packages/vite/src/node/plugins
5 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ import {
82
82
urlRE ,
83
83
} from '../utils'
84
84
import type { Logger } from '../logger'
85
- import { cleanUrl , slash } from '../../shared/utils'
85
+ import { cleanUrl , isWindows , slash } from '../../shared/utils'
86
86
import { createBackCompatIdResolver } from '../idResolver'
87
87
import type { ResolveIdFn } from '../idResolver'
88
88
import { PartialEnvironment } from '../baseEnvironment'
@@ -1162,8 +1162,14 @@ function createCSSResolvers(config: ResolvedConfig): CSSAtImportResolvers {
1162
1162
preferRelative : true ,
1163
1163
} )
1164
1164
sassResolve = async ( ...args ) => {
1165
+ // the modern API calls `canonicalize` with resolved file URLs
1166
+ // for relative URLs before raw specifiers
1165
1167
if ( args [ 1 ] . startsWith ( 'file://' ) ) {
1166
- args [ 1 ] = fileURLToPath ( args [ 1 ] )
1168
+ args [ 1 ] = fileURLToPath ( args [ 1 ] , {
1169
+ windows :
1170
+ // file:///foo cannot be converted to path with windows mode
1171
+ isWindows && args [ 1 ] . startsWith ( 'file:///' ) ? false : undefined ,
1172
+ } )
1167
1173
}
1168
1174
return resolver ( ...args )
1169
1175
}
Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ test('sass', async () => {
101
101
expect ( await getColor ( partialImport ) ) . toBe ( 'orchid' )
102
102
expect ( await getColor ( await page . $ ( '.sass-file-absolute' ) ) ) . toBe ( 'orange' )
103
103
expect ( await getColor ( await page . $ ( '.sass-dir-index' ) ) ) . toBe ( 'orange' )
104
+ expect ( await getColor ( await page . $ ( '.sass-root-relative' ) ) ) . toBe ( 'orange' )
104
105
105
106
if ( isBuild ) return
106
107
Original file line number Diff line number Diff line change @@ -43,6 +43,9 @@ <h1>CSS</h1>
43
43
@import "file:///xxx/absolute-path.scss" should be orange
44
44
</ p >
45
45
< p class ="sass-dir-index "> @import "./dir" should be orange</ p >
46
+ < p class ="sass-root-relative ">
47
+ @import "/nested/root-relative.scss" should be orange
48
+ </ p >
46
49
47
50
< p class ="less "> Less: This should be blue</ p >
48
51
< p class ="less-at-import ">
Original file line number Diff line number Diff line change 1
1
@use ' sass:string' ;
2
+ @use ' /nested/root-relative' ; // root relative path
2
3
3
4
@import ' ./css-in-scss.css' ;
4
5
Original file line number Diff line number Diff line change
1
+ .sass-root-relative {
2
+ color : orange ;
3
+ }
You can’t perform that action at this time.
0 commit comments