summaryrefslogtreecommitdiffhomepage
path: root/patches/@solidjs%[email protected]
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-11-23 12:18:47 -0500
committerDax Raad <[email protected]>2025-11-23 12:43:23 -0500
commit5814df7eaa8235e2af5657c155bfcdb3c7b72aae (patch)
tree72939cd701c2894ec82f19447cc2d1820bcf5ae0 /patches/@solidjs%[email protected]
parent2509d03f42e86316ba05880514a4c637a148f945 (diff)
downloadopencode-5814df7eaa8235e2af5657c155bfcdb3c7b72aae.tar.gz
opencode-5814df7eaa8235e2af5657c155bfcdb3c7b72aae.zip
sync
Diffstat (limited to 'patches/@solidjs%[email protected]')
-rw-r--r--patches/@solidjs%[email protected]18
1 files changed, 0 insertions, 18 deletions
diff --git a/patches/@solidjs%[email protected] b/patches/@solidjs%[email protected]
deleted file mode 100644
index 6cb620124..000000000
--- a/patches/@solidjs%[email protected]
+++ /dev/null
@@ -1,18 +0,0 @@
-diff --git a/dist/server/StartServer.jsx b/dist/server/StartServer.jsx
-index 0c6a9fe3121a88520db252570a8b5997a36e0452..b3479cdb78c70d7a655d302d8e6ab536b4ff07a3 100644
---- a/dist/server/StartServer.jsx
-+++ b/dist/server/StartServer.jsx
-@@ -52,11 +52,11 @@ export function StartServer(props) {
- else if (import.meta.env.DEV)
- console.warn("No route matched for preloading js assets");
- }
-- assets = await Promise.all(assetPromises).then(a =>
-+ assets = await Promise.all(assetPromises).then(a =>
- // dedupe assets
- [...new Map(a.flat().map(item => [item.attrs.key, item])).values()].filter(asset => import.meta.env.START_ISLANDS
- ? false
-- : asset.attrs.rel === "modulepreload" &&
-+ : (asset.attrs.rel === "modulepreload" || asset.attrs.rel === "stylesheet") &&
- !context.assets.find((a) => a.attrs.key === asset.attrs.key)));
- });
- useAssets(() => (assets.length ? assets.map(m => renderAsset(m)) : undefined));