Skip to content

Commit fc01380

Browse files
[C3] Consistently use full official full stack framework names (#19007)
* [C3] Consistently use full official full stack framework names Instead of using shortened names for the various full stack frameworks use their full official names * Apply suggestions from code review Co-authored-by: Daniel Walsh <[email protected]> --------- Co-authored-by: Daniel Walsh <[email protected]>
1 parent 7739d79 commit fc01380

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

public/_redirects

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -835,6 +835,8 @@
835835
/pages/how-to/deploy-a-vue-application/ /pages/framework-guides/deploy-a-vue-site/ 301
836836
/pages/functions/plugins/mailchannels/ /workers/tutorials/send-emails-with-resend/ 301
837837
/pages/framework-guides/deploy-a-vue-application/ /pages/framework-guides/deploy-a-vue-site 301
838+
/pages/framework-guides/deploy-a-solid-site/ /pages/framework-guides/deploy-a-solid-start-site/ 301
839+
/pages/framework-guides//pages/framework-guides/deploy-a-svelte-site/ /pages/framework-guides/deploy-a-svelte-kit-site/ 301
838840
/pages/how-to/deploy-a-zola-site/ /pages/framework-guides/deploy-a-zola-site/ 301
839841
/pages/how-to/elderjs/ /pages/framework-guides/deploy-an-elderjs-site/ 301
840842
/pages/configuration/language-support-and-tools/ /pages/configuration/build-image/ 301

src/content/docs/d1/examples/d1-and-sveltekit.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { TabItem, Tabs } from "~/components"
1919

2020
To set up a new SvelteKit site on Cloudflare Pages that can query D1:
2121

22-
1. **Refer to [the Svelte guide](/pages/framework-guides/deploy-a-svelte-site/) and Svelte's [Cloudflare adapter](https://kit.svelte.dev/docs/adapter-cloudflare)**.
22+
1. **Refer to [the SvelteKit guide](/pages/framework-guides/deploy-a-svelte-kit-site/) and Svelte's [Cloudflare adapter](https://kit.svelte.dev/docs/adapter-cloudflare)**.
2323
2. Install the Cloudflare adapter within your SvelteKit project: `npm i -D @sveltejs/adapter-cloudflare`.
2424
3. Bind a D1 database [to your Pages Function](/pages/functions/bindings/#d1-databases).
2525
4. Pass the `--d1 BINDING_NAME=DATABASE_ID` flag to `wrangler dev` when developing locally. `BINDING_NAME` should match what call in your code, and `DATABASE_ID` should match the `database_id` defined in your wrangler.toml: for example, `--d1 DB=xxxx-xxxx-xxxx-xxxx-xxxx`.

src/content/docs/pages/framework-guides/deploy-a-solid-site.mdx renamed to src/content/docs/pages/framework-guides/deploy-a-solid-start-site.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
pcx_content_type: how-to
3-
title: Solid
3+
title: SolidStart
44
---
55

66
import { Render, PackageManagers } from "~/components";

src/content/docs/pages/framework-guides/deploy-a-svelte-site.mdx renamed to src/content/docs/pages/framework-guides/deploy-a-svelte-kit-site.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
pcx_content_type: how-to
33
title: SvelteKit
4-
description: Learn how to use Cloudflare's features with SvelteKit
54
---
65

76
import { PagesBuildPreset, Render, PackageManagers } from "~/components";

src/content/docs/pages/framework-guides/deploy-an-elderjs-site.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Elder.js
55

66
import { PagesBuildPreset, Render } from "~/components";
77

8-
[Elder.js](https://elderguide.com/tech/elderjs/) is an SEO-focused framework for building static sites with [Svelte](/pages/framework-guides/deploy-a-svelte-site/).
8+
[Elder.js](https://elderguide.com/tech/elderjs/) is an SEO-focused framework for building static sites with [SvelteKit](/pages/framework-guides/deploy-a-svelte-kit-site/).
99

1010
In this guide, you will create a new Elder.js application and deploy it using Cloudflare Pages.
1111

src/content/docs/pages/get-started/c3.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ If you choose the "Framework Starter" option, you will be prompted to choose a f
3737
- [Qwik](/pages/framework-guides/deploy-a-qwik-site/)
3838
- [React](/pages/framework-guides/deploy-a-react-site/)
3939
- [Remix](/pages/framework-guides/deploy-a-remix-site/)
40-
- [Solid](/pages/framework-guides/deploy-a-solid-site/)
41-
- [Svelte](/pages/framework-guides/deploy-a-svelte-site/)
40+
- [SolidStart](/pages/framework-guides/deploy-a-solid-start-site/)
41+
- [SvelteKit](/pages/framework-guides/deploy-a-svelte-kit-site/)
4242
- [Vue](/pages/framework-guides/deploy-a-vue-site/)
4343

4444
When you use a framework, `npm create cloudflare` directly uses the framework's own command for generating a new projects, which may prompt additional questions. This ensures that the project you create is up-to-date with the latest version of the framework, and you have all the same options when creating you project via `npm create cloudflare` that you would if you created your project using the framework's tooling directly.

src/content/docs/pages/how-to/preview-with-cloudflare-tunnel.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ cloudflared version 2021.5.9 (built 2021-05-21-1541 UTC)
2323

2424
## Run a local service
2525

26-
The easiest way to get up and running with Cloudflare Tunnel is to have an application running locally, such as a [React](/pages/framework-guides/deploy-a-react-site/) or [Svelte](/pages/framework-guides/deploy-a-svelte-site/) site. When you are developing an application with these frameworks, they will often make use of a `npm run develop` script, or something similar, which mounts the application and runs it on a `localhost` port. For example, the popular `vite` tool runs your in-development React application on port `5173`, making it accessible at the `http://localhost:5173` address.
26+
The easiest way to get up and running with Cloudflare Tunnel is to have an application running locally, such as a [React](/pages/framework-guides/deploy-a-react-site/) or [SvelteKit](/pages/framework-guides/deploy-a-svelte-kit-site/) site. When you are developing an application with these frameworks, they will often make use of a `npm run develop` script, or something similar, which mounts the application and runs it on a `localhost` port. For example, the popular `vite` tool runs your in-development React application on port `5173`, making it accessible at the `http://localhost:5173` address.
2727

2828
## Start a Cloudflare Tunnel
2929

0 commit comments

Comments
 (0)