Skip to content

Commit a295e59

Browse files
[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
1 parent 9bddf28 commit a295e59

File tree

4 files changed

+20
-12
lines changed

4 files changed

+20
-12
lines changed

public/_redirects

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -829,6 +829,8 @@
829829
/pages/how-to/deploy-a-vue-application/ /pages/framework-guides/deploy-a-vue-site/ 301
830830
/pages/functions/plugins/mailchannels/ /workers/tutorials/send-emails-with-resend/ 301
831831
/pages/framework-guides/deploy-a-vue-application/ /pages/framework-guides/deploy-a-vue-site 301
832+
/pages/framework-guides/deploy-a-solid-site/ /pages/framework-guides/deploy-a-solid-start-site/ 301
833+
/pages/framework-guides//pages/framework-guides/deploy-a-svelte-site/ /pages/framework-guides/deploy-a-svelte-kit-site/ 301
832834
/pages/how-to/deploy-a-zola-site/ /pages/framework-guides/deploy-a-zola-site/ 301
833835
/pages/how-to/elderjs/ /pages/framework-guides/deploy-an-elderjs-site/ 301
834836
/pages/configuration/language-support-and-tools/ /pages/configuration/build-image/ 301

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/get-started/c3.mdx

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,14 @@ description: Use C3 (`create-cloudflare` CLI) to set up and deploy new
1010
deployment.
1111
---
1212

13-
import { Render, TabItem, Tabs, Type, MetaInfo, PackageManagers } from "~/components";
13+
import {
14+
Render,
15+
TabItem,
16+
Tabs,
17+
Type,
18+
MetaInfo,
19+
PackageManagers,
20+
} from "~/components";
1421

1522
Cloudflare provides a CLI command for creating new Workers and Pages projects — `npm create cloudflare`, powered by the [`create-cloudflare` package](https://www.npmjs.com/package/create-cloudflare).
1623

@@ -37,8 +44,8 @@ If you choose the "Framework Starter" option, you will be prompted to choose a f
3744
- [Qwik](/pages/framework-guides/deploy-a-qwik-site/)
3845
- [React](/pages/framework-guides/deploy-a-react-site/)
3946
- [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/)
47+
- [SolidStart](/pages/framework-guides/deploy-a-solid-start-site/)
48+
- [SvelteKit](/pages/framework-guides/deploy-a-svelte-kit-site/)
4249
- [Vue](/pages/framework-guides/deploy-a-vue-site/)
4350

4451
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.
@@ -229,7 +236,7 @@ Cloudflare collects anonymous usage data to improve `create-cloudflare` over tim
229236
You can opt-out if you do not wish to share any information.
230237

231238
<PackageManagers
232-
type="create"
239+
type="create"
233240
pkg="cloudflare@latest"
234241
args="telemetry disable"
235242
/>
@@ -243,15 +250,15 @@ export CREATE_CLOUDFLARE_TELEMETRY_DISABLED=1
243250
You can check the status of telemetry collection at any time.
244251

245252
<PackageManagers
246-
type="create"
247-
pkg="cloudflare@latest"
248-
args="telemetry status"
253+
type="create"
254+
pkg="cloudflare@latest"
255+
args="telemetry status"
249256
/>
250257

251258
You can always re-enable telemetry collection.
252259

253260
<PackageManagers
254-
type="create"
255-
pkg="cloudflare@latest"
256-
args="telemetry enable"
261+
type="create"
262+
pkg="cloudflare@latest"
263+
args="telemetry enable"
257264
/>

0 commit comments

Comments
 (0)