Skip to content

Commit deb33a9

Browse files
Vite: Don't rebase urls that appear to be aliases (#16078)
Closes #16039 This PR changes our URL rebasing logic used with Vite so that it does not rebase URLs that look like common alias paths (e.g. urls starting in `~`, `@` or `#`, etc.). Unfortunately this is only an approximation and you can configure an alias for a path that starts with a regular alphabetical character (e.g. `foo` => `./my/foo`) so this isn't a perfect fix, however in practice most aliases will be prefixed with a symbol to make it clear that it's an alias anyways. One alternative we have considered is to only rebase URLs that we know are relative (so they need to start with a `.`). This, however, will break common CSS use cases where urls are loaded like this: ```css background: image-set( url('image1.jpg') 1x, url('image2.jpg') 2x ); ``` So making this change felt like we only trade one GitHub issue for another one. In a more ideal scenario we try to resolve the URL with the Vite resolver (we have to run the resolver and can't rely on the `resolve` setting alone due to packages like [`vite-tsconfig-paths`](https://www.npmjs.com/package/vite-tsconfig-paths)), however even then we can have relative paths being resolvable to different files based on wether they were rebased or not (e.g. when an image with the same filename exists in two different paths). So ultimately we settled on extending the already existing blocklist (which we have taken from the Vite implementation) for now. ## Test plan - Added unit test and it was tested with the Vite playground. --------- Co-authored-by: Robin Malfait <[email protected]>
1 parent 60e6195 commit deb33a9

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515
- Refactor gradient implementation to work around [prettier/prettier#17058](https://github.com/prettier/prettier/issues/17058) ([#16072](https://github.com/tailwindlabs/tailwindcss/pull/16072))
1616
- Vite: Ensure hot-reloading works with SolidStart setups ([#16052](https://github.com/tailwindlabs/tailwindcss/pull/16052))
1717
- Vite: Fix a crash when starting the development server in SolidStart setups ([#16052](https://github.com/tailwindlabs/tailwindcss/pull/16052))
18+
- Vite: Don't rebase urls that appear to be aliases ([#16078](https://github.com/tailwindlabs/tailwindcss/pull/16078))
1819
- Prevent camelCasing CSS custom properties added by JavaScript plugins ([#16103](https://github.com/tailwindlabs/tailwindcss/pull/16103))
1920
- Do not emit `@keyframes` in `@theme reference` ([#16120](https://github.com/tailwindlabs/tailwindcss/pull/16120))
2021

packages/@tailwindcss-node/src/urls.test.ts

+26
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,20 @@ test('URLs can be rewritten', async () => {
2424
background: url('/image.jpg');
2525
background: url("/image.jpg");
2626
27+
/* Potentially Vite-aliased URLs: ignored */
28+
background: url(~/image.jpg);
29+
background: url(~/foo/image.jpg);
30+
background: url('~/image.jpg');
31+
background: url("~/image.jpg");
32+
background: url(#/image.jpg);
33+
background: url(#/foo/image.jpg);
34+
background: url('#/image.jpg');
35+
background: url("#/image.jpg");
36+
background: url(@/image.jpg);
37+
background: url(@/foo/image.jpg);
38+
background: url('@/image.jpg');
39+
background: url("@/image.jpg");
40+
2741
/* External URL: ignored */
2842
background: url(http://example.com/image.jpg);
2943
background: url('http://example.com/image.jpg');
@@ -109,6 +123,18 @@ test('URLs can be rewritten', async () => {
109123
background: url(/foo/image.jpg);
110124
background: url('/image.jpg');
111125
background: url("/image.jpg");
126+
background: url(~/image.jpg);
127+
background: url(~/foo/image.jpg);
128+
background: url('~/image.jpg');
129+
background: url("~/image.jpg");
130+
background: url(#/image.jpg);
131+
background: url(#/foo/image.jpg);
132+
background: url('#/image.jpg');
133+
background: url("#/image.jpg");
134+
background: url(@/image.jpg);
135+
background: url(@/foo/image.jpg);
136+
background: url('@/image.jpg');
137+
background: url("@/image.jpg");
112138
background: url(http://example.com/image.jpg);
113139
background: url('http://example.com/image.jpg');
114140
background: url("http://example.com/image.jpg");

packages/@tailwindcss-node/src/urls.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,12 @@ async function doUrlReplace(
149149
return `${funcName}(${wrap}${newUrl}${wrap})`
150150
}
151151

152-
function skipUrlReplacer(rawUrl: string) {
152+
function skipUrlReplacer(rawUrl: string, aliases?: string[]) {
153153
return (
154-
isExternalUrl(rawUrl) || isDataUrl(rawUrl) || rawUrl[0] === '#' || functionCallRE.test(rawUrl)
154+
isExternalUrl(rawUrl) ||
155+
isDataUrl(rawUrl) ||
156+
!rawUrl[0].match(/[\.a-zA-Z0-9_]/) ||
157+
functionCallRE.test(rawUrl)
155158
)
156159
}
157160

0 commit comments

Comments
 (0)