Skip to content

Commit 696defe

Browse files
committed
fix: exclude css with sideeffects from ssr during dev
The goal here is to bring vinxi > v0.5 css rendering back in line with v0.4.3. So this doesn't fix inconsistencies already existing from the v0.4.3 days. The new `cssUrlParamsWithoutSideEffects` and `injectQuery` functions are copied from Remix, opening up further future alignment of the used logic. Refs: b6d9643 1ac2df3 vitejs/vite#17922
1 parent da95588 commit 696defe

File tree

2 files changed

+45
-9
lines changed

2 files changed

+45
-9
lines changed

.changeset/six-schools-ring.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"vinxi": patch
3+
---
4+
5+
Fix a regression that caused css imported with sideeffects such as `?url`, to be rendered during ssr (in dev).

packages/vinxi/lib/manifest/collect-styles.js

+40-9
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,40 @@ const isCssFile = (/** @type {string} */ file) => cssFileRegExp.test(file);
159159
export const isCssModulesFile = (/** @type {string} */ file) =>
160160
cssModulesRegExp.test(file);
161161

162+
// https://github.com/remix-run/remix/blob/65326e39099f3b2285d83aecfe734ba35f668396/packages/remix-dev/vite/styles.ts#L29
163+
const cssUrlParamsWithoutSideEffects = ["url", "inline", "raw", "inline-css"];
164+
export const isCssUrlWithoutSideEffects = (/** @type {string} */ url) => {
165+
const queryString = url.split("?")[1];
166+
167+
if (!queryString) {
168+
return false;
169+
}
170+
171+
const params = new URLSearchParams(queryString);
172+
for (let paramWithoutSideEffects of cssUrlParamsWithoutSideEffects) {
173+
if (
174+
// Parameter is blank and not explicitly set, i.e. "?url", not "?url="
175+
params.get(paramWithoutSideEffects) === "" &&
176+
!url.includes(`?${paramWithoutSideEffects}=`) &&
177+
!url.includes(`&${paramWithoutSideEffects}=`)
178+
) {
179+
return true;
180+
}
181+
}
182+
183+
return false;
184+
};
185+
186+
/**
187+
*
188+
* @param {string} url
189+
* @param {string} query
190+
* Source: https://github.com/remix-run/remix/pull/10254
191+
* @returns
192+
*/
193+
const injectQuery = (url, query) =>
194+
url.includes("?") ? url.replace("?", `?${query}&`) : `${url}?${query}`;
195+
162196
/**
163197
*
164198
* @param {import('vite').ViteDevServer} vite
@@ -170,17 +204,14 @@ async function findStylesInModuleGraph(vite, match, ssr) {
170204
const dependencies = await findDependencies(vite, match, ssr);
171205

172206
for (const dep of dependencies) {
173-
const parsed = new URL(dep.url, "http://localhost/");
174-
const query = parsed.searchParams;
175-
176207
if (isCssFile(dep.url ?? "")) {
177208
try {
178-
let [path, query] = dep.url.split('?')
179-
let searchParams = new URLSearchParams(query)
180-
searchParams.delete("url")
181-
searchParams.set("inline", true)
182-
let inlineDepURL = path + '?' + searchParams.toString()
183-
const mod = await vite.ssrLoadModule(inlineDepURL);
209+
let depURL = dep.url;
210+
if (!isCssUrlWithoutSideEffects(depURL)) {
211+
depURL = injectQuery(dep.url, "inline");
212+
}
213+
214+
const mod = await vite.ssrLoadModule(depURL);
184215
if (isCssModulesFile(dep.file)) {
185216
styles[join(vite.config.root, dep.url)] = vite.cssModules?.[dep.file];
186217
} else {

0 commit comments

Comments
 (0)