Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 25 additions & 11 deletions docs/start/framework/react/guide/hosting.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,19 @@ Once you've chosen a deployment target, you can follow the deployment guidelines

### Cloudflare Workers ⭐ _Official Partner_

<a href="https://www.cloudflare.com?utm_source=tanstack" alt="Cloudflare Logo">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/cloudflare-white.svg" width="280">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/cloudflare-black.svg" width="280">
<img alt="Cloudflare logo" src="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/cloudflare-black.svg" width="280">
</picture>
<a href="https://www.cloudflare.com?utm_source=tanstack">
<img
src="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/cloudflare-black.svg"
class="block dark:hidden"
width="280"
alt="Cloudflare logo"
/>
<img
src="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/cloudflare-white.svg"
class="hidden dark:block"
width="280"
alt="Cloudflare logo"
/>
</a>

When deploying to Cloudflare Workers, you'll need to complete a few extra steps before your users can start using your app.
Expand Down Expand Up @@ -117,11 +124,18 @@ A full TanStack Start example for Cloudflare Workers is available [here](https:/
### Netlify ⭐ _Official Partner_

<a href="https://www.netlify.com?utm_source=tanstack" alt="Netlify Logo">
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/netlify-dark.svg" width="280">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/netlify-light.svg" width="280">
<img alt="Netlify logo" src="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/netlify-light.svg" width="280">
</picture>
<img
class="block dark:hidden"
src="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/netlify-light.svg"
width="280"
alt="Netlify Logo"
/>
<img
class="hidden dark:block"
src="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/netlify-dark.svg"
width="280"
alt="Netlify Logo"
/>
</a>

Install and add the [`@netlify/vite-plugin-tanstack-start`](https://www.npmjs.com/package/@netlify/vite-plugin-tanstack-start) plugin, which configures your build for Netlify deployment and provides full Netlify production platform emulation in local dev:
Expand Down
37 changes: 26 additions & 11 deletions docs/start/framework/solid/guide/hosting.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,25 @@ Once you've chosen a deployment target, you can follow the deployment guidelines

### Cloudflare Workers ⭐ _Official Partner_

<a href="https://www.cloudflare.com?utm_source=tanstack" alt="Cloudflare Logo">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/cloudflare-white.svg" width="280">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/cloudflare-black.svg" width="280">
<img alt="Cloudflare logo" src="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/cloudflare-black.svg" width="280">
</picture>
<a href="https://www.cloudflare.com?utm_source=tanstack">
<img
src="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/cloudflare-black.svg"
class="block dark:hidden"
width="280"
alt="Cloudflare logo"
/>
<img
src="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/cloudflare-white.svg"
class="hidden dark:block"
width="280"
alt="Cloudflare logo"
/>
</a>

### Cloudflare Workers

When deploying to Cloudflare Workers, you'll need to complete a few extra steps before your users can start using your app.
testing updats
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated

1. Install `@cloudflare/vite-plugin`

Expand Down Expand Up @@ -111,11 +119,18 @@ Deploy your application to Cloudflare Workers using their one-click deployment p
### Netlify ⭐ _Official Partner_

<a href="https://www.netlify.com?utm_source=tanstack" alt="Netlify Logo">
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/netlify-dark.svg" width="280">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/netlify-light.svg" width="280">
<img alt="Netlify logo" src="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/netlify-light.svg" width="280">
</picture>
<img
class="block dark:hidden"
src="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/netlify-light.svg"
width="280"
alt="Netlify Logo"
/>
<img
class="hidden dark:block"
src="https://raw.githubusercontent.com/tanstack/tanstack.com/main/src/images/netlify-dark.svg"
width="280"
alt="Netlify Logo"
/>
</a>

Install and add the [`@netlify/vite-plugin-tanstack-start`](https://www.npmjs.com/package/@netlify/vite-plugin-tanstack-start) plugin, which configures your build for Netlify deployment and provides full Netlify production platform emulation in local dev:
Expand Down