From e3381556c3ce58b9aea92bff6ca85ac32cdbb29e Mon Sep 17 00:00:00 2001 From: Brenley Dueck Date: Tue, 11 Aug 2026 20:25:05 -0500 Subject: [PATCH 1/2] docs: add deployment integration examples --- osmium/src/utils.ts | 2 +- public/images/logos/solid2.svg | 83 +++++++++++ src/routes/(3)building-apps/(7)deployment.mdx | 138 ++++++++++++++++++ 3 files changed, 222 insertions(+), 1 deletion(-) create mode 100644 public/images/logos/solid2.svg diff --git a/osmium/src/utils.ts b/osmium/src/utils.ts index 4f888216f3..b3b3064cca 100644 --- a/osmium/src/utils.ts +++ b/osmium/src/utils.ts @@ -30,7 +30,7 @@ export function useProject() { current: useSolidBaseRoute()().project ?? "solid", projects: ("values" in projectConfig ? projectConfig.values - : { solid: { path: "", label: "Solid" } }) as Record< + : { solid: { path: "", label: "Solid2" } }) as Record< string, { path: string; label: string } >, diff --git a/public/images/logos/solid2.svg b/public/images/logos/solid2.svg new file mode 100644 index 0000000000..d973379a02 --- /dev/null +++ b/public/images/logos/solid2.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/routes/(3)building-apps/(7)deployment.mdx b/src/routes/(3)building-apps/(7)deployment.mdx index 9ef70acc45..35edc5d826 100644 --- a/src/routes/(3)building-apps/(7)deployment.mdx +++ b/src/routes/(3)building-apps/(7)deployment.mdx @@ -123,3 +123,141 @@ The pinned Solid 2.0 sources define the `handleRequest(Request) -> Promise Date: Tue, 11 Aug 2026 20:27:22 -0500 Subject: [PATCH 2/2] docs: refine deployment integration wording --- src/routes/(3)building-apps/(7)deployment.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/(3)building-apps/(7)deployment.mdx b/src/routes/(3)building-apps/(7)deployment.mdx index 35edc5d826..0a32b54fb9 100644 --- a/src/routes/(3)building-apps/(7)deployment.mdx +++ b/src/routes/(3)building-apps/(7)deployment.mdx @@ -174,7 +174,7 @@ Use the top-level `nitro` property for deployment presets, prerendering, tasks, #### Netlify -The [Netlify Vite plugin](https://docs.netlify.com/build/frameworks/framework-setup-guides/solidstart/) prepares the server build for Netlify Functions and emulates Netlify platform features during development. +The Netlify Vite plugin prepares the server build for Netlify Functions and emulates Netlify platform features during development. ```package-install-dev @netlify/vite-plugin @@ -205,7 +205,7 @@ The [Cloudflare Vite plugin](https://developers.cloudflare.com/workers/vite-plug @cloudflare/vite-plugin wrangler ``` -Map the Worker to SolidStart's `ssr` environment: +Map the Worker to Solid's `ssr` environment: ```tsx title="vite.config.ts" import { cloudflare } from "@cloudflare/vite-plugin";