We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d712b7e + 76ae862 commit 7c39ec3Copy full SHA for 7c39ec3
server/src/server.ts
@@ -119,7 +119,7 @@ const parseCSSVariablesFromText = ({
119
const service = languageService();
120
121
const document = TextDocument.create(
122
- `file://${filePath}`,
+ `file:///${filePath}`,
123
'css',
124
0,
125
content
@@ -149,7 +149,7 @@ const parseCSSVariablesFromText = ({
149
const variable: CSSVariable = {
150
symbol,
151
definition: {
152
- uri: `file://${filePath}`,
+ uri: `file:///${filePath}`,
153
range: Range.create(
154
document.positionAt(symbol.node.offset),
155
document.positionAt(symbol.node.end)
0 commit comments