Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ To use `create-cloudflare` to create a new Docusaurus project, run the following

<PackageManagers
type="create"
pkg="cloudflare@latest"
args="my-docusaurus-app --framework=docusaurus"
pkg="cloudflare@latest my-docusaurus-app"
args="--framework=docusaurus --platform=pages"
/>

`create-cloudflare` will install additional dependencies, including the [Wrangler](/workers/wrangler/install-and-update/#check-your-wrangler-version) CLI and any necessary adapters, and ask you setup questions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ The [`create-cloudflare` CLI (C3)](/pages/get-started/c3/) will configure your N

<PackageManagers
type="create"
pkg="cloudflare@latest"
args="my-nuxt-app --framework=nuxt"
pkg="cloudflare@latest my-nuxt-app"
args="--framework=nux --platform=pages"
/>

C3 will ask you a series of setup questions and create a new project with [`nuxi` (the official Nuxt CLI)](https://github.com/nuxt/cli). C3 will also install the necessary adapters along with the [Wrangler CLI](/workers/wrangler/install-and-update/#check-your-wrangler-version).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ To use `create-cloudflare` to create a new Qwik project, run the following comma

<PackageManagers
type="create"
pkg="cloudflare@latest"
args="my-qwik-app --framework=qwik"
pkg="cloudflare@latest my-qwik-app"
args="--framework=qwik --platform=pages"
/>

`create-cloudflare` will install additional dependencies, including the [Wrangler CLI](/workers/wrangler/install-and-update/#check-your-wrangler-version) and any necessary adapters, and ask you setup questions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ To use `create-cloudflare` to create a new React project, run the following comm

<PackageManagers
type="create"
pkg="cloudflare@latest"
args="my-react-app --framework=react"
pkg="cloudflare@latest my-react-app"
args="--framework=react --platform=pages"
/>

`create-cloudflare` will install dependencies, including the [Wrangler](/workers/wrangler/install-and-update/#check-your-wrangler-version) CLI and the Cloudflare Pages adapter, and ask you setup questions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ To use `create-cloudflare` to create a new Remix project, run the following comm

<PackageManagers
type="create"
pkg="cloudflare@latest"
args="my-remix-app --framework=remix"
pkg="cloudflare@latest my-remix-app"
args="--framework=remix --platform=pages"
/>

`create-cloudflare` will install additional dependencies, including the [Wrangler](/workers/wrangler/install-and-update/#check-your-wrangler-version) CLI and any necessary adapters, and ask you setup questions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ To use `create-cloudflare` to create a new Svelte project, run the following com

<PackageManagers
type="create"
pkg="cloudflare@latest"
args="my-svelte-app --framework=svelte"
pkg="cloudflare@latest my-svelte-app"
args="--framework=svelte --platform=pages"
/>

SvelteKit will prompt you for customization choices. For the template option, choose one of the application/project options. The remaining answers will not affect the rest of this guide. Choose the options that suit your project.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ To use `create-cloudflare` to create a new Vue project, run the following comman

<PackageManagers
type="create"
pkg="cloudflare@latest"
args="my-vue-app --framework=vue"
pkg="cloudflare@latest my-vue-app "
args="--framework=vue --platform=pages"
/>

<Render file="tutorials-before-you-start" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ The easiest way to create a new Analog project and deploy to Cloudflare Pages is

<PackageManagers
type="create"
pkg="cloudflare@latest"
args="my-analog-app --framework=analog"
pkg="cloudflare@latest my-analog-app"
args="--framework=analog --platform=pages"
/>

C3 will walk you through the setup process and create a new project using `create-analog`, the official Analog creation tool. It will also install the necessary adapters along with the [Wrangler CLI](/workers/wrangler/install-and-update/#check-your-wrangler-version).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ To use `create-cloudflare` to create a new Angular project, run the following co

<PackageManagers
type="create"
pkg="cloudflare@latest"
args="my-angular-app --framework=angular"
pkg="cloudflare@latest my-angular-app"
args="--framework=angular --platform=pages"
/>

`create-cloudflare` will install dependencies, including the [Wrangler](/workers/wrangler/install-and-update/#check-your-wrangler-version) CLI and the Cloudflare Pages adapter, and ask you setup questions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ To use `create-cloudflare` to create a new Astro project, run the following comm

<PackageManagers
type="create"
pkg="cloudflare@latest"
args="my-astro-app --framework=astro"
pkg="cloudflare@latest my-astro-app"
args="--framework=astro --platform=pages"
/>

Astro will ask:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ To create a new Next.js app, pre-configured to run on Cloudflare, run:

<PackageManagers
type="create"
pkg="cloudflare@latest"
args="my-next-app --framework=next"
pkg="cloudflare@latest my-next-app"
args="--framework=next --platform=pages"
/>

For more guidance on developing your app, refer to [Bindings](/pages/framework-guides/nextjs/ssr/bindings/) or the [Next.js documentation](https://nextjs.org).
Expand Down