Skip to content

Commit 4e5ce3c

Browse files
authoredAug 11, 2024··
fix(lightningcss): search for assets with correct base path (#17856)
1 parent e961b31 commit 4e5ce3c

File tree

5 files changed

+18
-1
lines changed

5 files changed

+18
-1
lines changed
 

‎packages/vite/src/node/plugins/css.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3011,7 +3011,7 @@ async function compileLightningCSS(
30113011
}
30123012
deps.add(dep.url)
30133013
if (urlReplacer) {
3014-
const replaceUrl = await urlReplacer(dep.url, id)
3014+
const replaceUrl = await urlReplacer(dep.url, dep.loc.filePath)
30153015
css = css.replace(dep.placeholder, () => replaceUrl)
30163016
} else {
30173017
css = css.replace(dep.placeholder, () => dep.url)

‎playground/css-lightningcss/__tests__/css-lightningcss.spec.ts

+8
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import {
77
isBuild,
88
page,
99
untilUpdated,
10+
viteTestUrl,
1011
} from '~utils'
1112

1213
// note: tests should retrieve the element at the beginning of test and reuse it
@@ -71,3 +72,10 @@ test('css with external url', async () => {
7172
const css = await page.$('.external')
7273
expect(await getBg(css)).toMatch('url("https://vitejs.dev/logo.svg")')
7374
})
75+
76+
test('nested css with relative asset', async () => {
77+
const css = await page.$('.nested-css-relative-asset')
78+
expect(await getBg(css)).toMatch(
79+
isBuild ? /ok-[-\w]+\.png/ : `${viteTestUrl}/ok.png`,
80+
)
81+
})

‎playground/css-lightningcss/imported.css

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
@import url('./nested/nested.css');
12
@import './imported-at-import.css';
23

34
.imported {

‎playground/css-lightningcss/index.html

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ <h1>Lightning CSS</h1>
2626

2727
<p>External URL</p>
2828
<div class="external"></div>
29+
30+
<p>Assets relative to nested CSS</p>
31+
<div class="nested-css-relative-asset"></div>
2932
</div>
3033

3134
<script type="module" src="./main.js"></script>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.nested-css-relative-asset {
2+
background-image: url('../ok.png');
3+
width: 50px;
4+
height: 50px;
5+
}

0 commit comments

Comments
 (0)
Please sign in to comment.