diff --git a/contributing.md b/contributing.md index 5015368953961..8fa7929570e84 100644 --- a/contributing.md +++ b/contributing.md @@ -307,7 +307,7 @@ npx create-next-app --example DIRECTORY_NAME DIRECTORY_NAME-app # or yarn create next-app --example DIRECTORY_NAME DIRECTORY_NAME-app # or -pnpm create next-app -- --example DIRECTORY_NAME DIRECTORY_NAME-app +pnpm create next-app --example DIRECTORY_NAME DIRECTORY_NAME-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/docs/api-reference/create-next-app.md b/docs/api-reference/create-next-app.md index 005d48659263e..f9d798376cf93 100644 --- a/docs/api-reference/create-next-app.md +++ b/docs/api-reference/create-next-app.md @@ -21,7 +21,7 @@ npx create-next-app@latest --ts # or yarn create next-app --typescript # or -pnpm create next-app -- --ts +pnpm create next-app --ts ``` ### Options diff --git a/docs/basic-features/typescript.md b/docs/basic-features/typescript.md index 5f49ffb6bf63d..edc043a8f8bf0 100644 --- a/docs/basic-features/typescript.md +++ b/docs/basic-features/typescript.md @@ -28,7 +28,7 @@ npx create-next-app@latest --ts # or yarn create next-app --typescript # or -pnpm create next-app -- --ts +pnpm create next-app --ts ``` ## Existing projects diff --git a/docs/getting-started.md b/docs/getting-started.md index 0e0085d4ccbfb..ae22173194602 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -35,8 +35,8 @@ If you want to start with a TypeScript project you can use the `--typescript` fl npx create-next-app@latest --typescript # or yarn create next-app --typescript -# or (the extra '--' is expected and tells pnpm to pass the args down) -pnpm create next-app -- --typescript +# or +pnpm create next-app --typescript ``` After the installation is complete: diff --git a/examples/active-class-name/README.md b/examples/active-class-name/README.md index 16dfad709228d..459ad7b85092e 100644 --- a/examples/active-class-name/README.md +++ b/examples/active-class-name/README.md @@ -17,7 +17,7 @@ npx create-next-app --example active-class-name active-class-name-app # or yarn create next-app --example active-class-name active-class-name-app # or -pnpm create next-app -- --example active-class-name active-class-name-app +pnpm create next-app --example active-class-name active-class-name-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/amp-first/README.md b/examples/amp-first/README.md index f118008fe630e..5ce5591c35d58 100644 --- a/examples/amp-first/README.md +++ b/examples/amp-first/README.md @@ -22,7 +22,7 @@ npx create-next-app --example amp-first amp-first-app # or yarn create next-app --example amp-first amp-first-app # or -pnpm create next-app -- --example amp-first amp-first-app +pnpm create next-app --example amp-first amp-first-app ``` Open [http://localhost:3000](http://localhost:3000) to view it in the browser. The page will reload if you make edits. You will also see AMP validation errors in the console. diff --git a/examples/amp-story/README.md b/examples/amp-story/README.md index 801f228496880..d84d8744398b6 100644 --- a/examples/amp-story/README.md +++ b/examples/amp-story/README.md @@ -17,7 +17,7 @@ npx create-next-app --example amp-story amp-story-app # or yarn create next-app --example amp-story amp-story-app # or -pnpm create next-app -- --example amp-story amp-story-app +pnpm create next-app --example amp-story amp-story-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/amp/README.md b/examples/amp/README.md index 8f98db8a10728..cafbde7340a0e 100644 --- a/examples/amp/README.md +++ b/examples/amp/README.md @@ -17,7 +17,7 @@ npx create-next-app --example amp amp-app # or yarn create next-app --example amp amp-app # or -pnpm create next-app -- --example amp amp-app +pnpm create next-app --example amp amp-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/analyze-bundles/README.md b/examples/analyze-bundles/README.md index 9dffbb9b86f00..50ad6b47aa3c5 100644 --- a/examples/analyze-bundles/README.md +++ b/examples/analyze-bundles/README.md @@ -17,7 +17,7 @@ npx create-next-app --example analyze-bundles analyze-bundles-app # or yarn create next-app --example analyze-bundles analyze-bundles-app # or -pnpm create next-app -- --example analyze-bundles analyze-bundles-app +pnpm create next-app --example analyze-bundles analyze-bundles-app ``` ### Analyze webpack output diff --git a/examples/api-routes-apollo-server-and-client-auth/README.md b/examples/api-routes-apollo-server-and-client-auth/README.md index b2e3edda6aee8..aa74d4bf11201 100644 --- a/examples/api-routes-apollo-server-and-client-auth/README.md +++ b/examples/api-routes-apollo-server-and-client-auth/README.md @@ -19,7 +19,7 @@ npx create-next-app --example api-routes-apollo-server-and-client-auth api-route # or yarn create next-app --example api-routes-apollo-server-and-client-auth api-routes-apollo-server-and-client-auth-app # or -pnpm create next-app -- --example api-routes-apollo-server-and-client-auth api-routes-apollo-server-and-client-auth-app +pnpm create next-app --example api-routes-apollo-server-and-client-auth api-routes-apollo-server-and-client-auth-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/api-routes-apollo-server-and-client/README.md b/examples/api-routes-apollo-server-and-client/README.md index cbe43c37e355f..83313598e182c 100644 --- a/examples/api-routes-apollo-server-and-client/README.md +++ b/examples/api-routes-apollo-server-and-client/README.md @@ -19,7 +19,7 @@ npx create-next-app --example api-routes-apollo-server-and-client api-routes-apo # or yarn create next-app --example api-routes-apollo-server-and-client api-routes-apollo-server-and-client-app # or -pnpm create next-app -- --example api-routes-apollo-server-and-client api-routes-apollo-server-and-client-app +pnpm create next-app --example api-routes-apollo-server-and-client api-routes-apollo-server-and-client-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/api-routes-apollo-server/README.md b/examples/api-routes-apollo-server/README.md index a474430159df6..cf4221c8bb5e8 100644 --- a/examples/api-routes-apollo-server/README.md +++ b/examples/api-routes-apollo-server/README.md @@ -17,7 +17,7 @@ npx create-next-app --example api-routes-apollo-server api-routes-apollo-server- # or yarn create next-app --example api-routes-apollo-server api-routes-apollo-server-app # or -pnpm create next-app -- --example api-routes-apollo-server api-routes-apollo-server-app +pnpm create next-app --example api-routes-apollo-server api-routes-apollo-server-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/api-routes-cors/README.md b/examples/api-routes-cors/README.md index f2623eb4661c3..88cbc55c2af6c 100644 --- a/examples/api-routes-cors/README.md +++ b/examples/api-routes-cors/README.md @@ -19,7 +19,7 @@ npx create-next-app --example api-routes-cors api-routes-cors-app # or yarn create next-app --example api-routes-cors api-routes-cors-app # or -pnpm create next-app -- --example api-routes-cors api-routes-cors-app +pnpm create next-app --example api-routes-cors api-routes-cors-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/api-routes-graphql/README.md b/examples/api-routes-graphql/README.md index f730f17855231..37dcdef37bc6d 100644 --- a/examples/api-routes-graphql/README.md +++ b/examples/api-routes-graphql/README.md @@ -34,7 +34,7 @@ npx create-next-app --example api-routes-graphql api-routes-graphql-app # or yarn create next-app --example api-routes-graphql api-routes-graphql-app # or -pnpm create next-app -- --example api-routes-graphql api-routes-graphql-app +pnpm create next-app --example api-routes-graphql api-routes-graphql-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/api-routes-middleware/README.md b/examples/api-routes-middleware/README.md index de1d2eab9b270..7b3939f3e7e87 100644 --- a/examples/api-routes-middleware/README.md +++ b/examples/api-routes-middleware/README.md @@ -17,7 +17,7 @@ npx create-next-app --example api-routes-middleware api-routes-middleware-app # or yarn create next-app --example api-routes-middleware api-routes-middleware-app # or -pnpm create next-app -- --example api-routes-middleware api-routes-middleware-app +pnpm create next-app --example api-routes-middleware api-routes-middleware-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/api-routes-rate-limit/README.md b/examples/api-routes-rate-limit/README.md index 4298a95b3e7b0..4e84df4cd2960 100644 --- a/examples/api-routes-rate-limit/README.md +++ b/examples/api-routes-rate-limit/README.md @@ -31,7 +31,7 @@ npx create-next-app --example api-routes-rate-limit api-routes-rate-limit-app # or yarn create next-app --example api-routes-rate-limit api-routes-rate-limit-app # or -pnpm create next-app -- --example api-routes-rate-limit api-routes-rate-limit-app +pnpm create next-app --example api-routes-rate-limit api-routes-rate-limit-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/api-routes-rest/README.md b/examples/api-routes-rest/README.md index a991e6c68aa96..fbb2439f5953f 100644 --- a/examples/api-routes-rest/README.md +++ b/examples/api-routes-rest/README.md @@ -17,7 +17,7 @@ npx create-next-app --example api-routes-rest api-routes-rest-app # or yarn create next-app --example api-routes-rest api-routes-rest-app # or -pnpm create next-app -- --example api-routes-rest api-routes-rest-app +pnpm create next-app --example api-routes-rest api-routes-rest-app ``` ### Deploy to Vercel diff --git a/examples/api-routes/README.md b/examples/api-routes/README.md index f88b3f101b279..fe0731195fd01 100644 --- a/examples/api-routes/README.md +++ b/examples/api-routes/README.md @@ -17,7 +17,7 @@ npx create-next-app --example api-routes api-routes-app # or yarn create next-app --example api-routes api-routes-app # or -pnpm create next-app -- --example api-routes api-routes-app +pnpm create next-app --example api-routes api-routes-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/auth0/README.md b/examples/auth0/README.md index ae22631ecf367..48f16c920006b 100644 --- a/examples/auth0/README.md +++ b/examples/auth0/README.md @@ -20,7 +20,7 @@ npx create-next-app --example auth0 auth0-app # or yarn create next-app --example auth0 auth0-app # or -pnpm create next-app -- --example auth0 auth0-app +pnpm create next-app --example auth0 auth0-app ``` ## Configuring Auth0 diff --git a/examples/basic-css/README.md b/examples/basic-css/README.md index aa2dd0bf98021..841357a5ab4c0 100644 --- a/examples/basic-css/README.md +++ b/examples/basic-css/README.md @@ -17,7 +17,7 @@ npx create-next-app --example basic-css basic-css-app # or yarn create next-app --example basic-css basic-css-app # or -pnpm create next-app -- --example basic-css basic-css-app +pnpm create next-app --example basic-css basic-css-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/basic-export/README.md b/examples/basic-export/README.md index bafc4bfb33623..9dae679a341dd 100644 --- a/examples/basic-export/README.md +++ b/examples/basic-export/README.md @@ -17,7 +17,7 @@ npx create-next-app --example basic-export basic-export-app # or yarn create next-app --example basic-export basic-export-app # or -pnpm create next-app -- --example basic-export basic-export-app +pnpm create next-app --example basic-export basic-export-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/blog-starter-typescript/README.md b/examples/blog-starter-typescript/README.md index 28b022ea299b4..a932b40ff7e51 100644 --- a/examples/blog-starter-typescript/README.md +++ b/examples/blog-starter-typescript/README.md @@ -23,7 +23,7 @@ npx create-next-app --example blog-starter-typescript blog-starter-typescript-ap # or yarn create next-app --example blog-starter-typescript blog-starter-typescript-app # or -pnpm create next-app -- --example blog-starter-typescript blog-starter-typescript-app +pnpm create next-app --example blog-starter-typescript blog-starter-typescript-app ``` Your blog should be up and running on [http://localhost:3000](http://localhost:3000)! If it doesn't work, post on [GitHub discussions](https://github.com/vercel/next.js/discussions). diff --git a/examples/blog-starter/README.md b/examples/blog-starter/README.md index fdf1db13b071e..bf307147d62ff 100644 --- a/examples/blog-starter/README.md +++ b/examples/blog-starter/README.md @@ -49,7 +49,7 @@ or ``` yarn create next-app --example blog-starter blog-starter-app # or -pnpm create next-app -- --example blog-starter blog-starter-app +pnpm create next-app --example blog-starter blog-starter-app ``` diff --git a/examples/blog/README.md b/examples/blog/README.md index 8a728bc0a6354..cf88d3eb4d53e 100644 --- a/examples/blog/README.md +++ b/examples/blog/README.md @@ -32,7 +32,7 @@ npx create-next-app --example blog my-blog # or yarn create next-app --example blog my-blog # or -pnpm create next-app -- --example blog my-blog +pnpm create next-app --example blog my-blog ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/catch-all-routes/README.md b/examples/catch-all-routes/README.md index 8f01c663c64b1..53fbacb449021 100644 --- a/examples/catch-all-routes/README.md +++ b/examples/catch-all-routes/README.md @@ -26,7 +26,7 @@ npx create-next-app --example catch-all-routes catch-all-routes-app # or yarn create next-app --example catch-all-routes catch-all-routes-app # or -pnpm create next-app -- --example catch-all-routes catch-all-routes-app +pnpm create next-app --example catch-all-routes catch-all-routes-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/cms-agilitycms/README.md b/examples/cms-agilitycms/README.md index cb39a202200c3..56b7c6073dc61 100644 --- a/examples/cms-agilitycms/README.md +++ b/examples/cms-agilitycms/README.md @@ -43,7 +43,7 @@ npx create-next-app --example cms-agilitycms cms-agilitycms-app # or yarn create next-app --example cms-agilitycms cms-agilitycms-app # or -pnpm create next-app -- --example cms-agilitycms cms-agilitycms-app +pnpm create next-app --example cms-agilitycms cms-agilitycms-app ``` ## Configuration diff --git a/examples/cms-builder-io/README.md b/examples/cms-builder-io/README.md index adadd0c1e9db5..a9764932d2003 100644 --- a/examples/cms-builder-io/README.md +++ b/examples/cms-builder-io/README.md @@ -15,7 +15,7 @@ npx create-next-app --example cms-builder-io cms-builder-io-app # or yarn create next-app --example cms-builder-io cms-builder-io-app # or -pnpm create next-app -- --example cms-builder-io cms-builder-io-app +pnpm create next-app --example cms-builder-io cms-builder-io-app ``` ## Configuration diff --git a/examples/cms-buttercms/README.md b/examples/cms-buttercms/README.md index 086bb3b7d3bbf..0445f18ec8b66 100644 --- a/examples/cms-buttercms/README.md +++ b/examples/cms-buttercms/README.md @@ -56,7 +56,7 @@ npx create-next-app --example cms-buttercms cms-buttercms-app # or yarn create next-app --example cms-buttercms cms-buttercms-app # or -pnpm create next-app -- --example cms-buttercms cms-buttercms-app +pnpm create next-app --example cms-buttercms cms-buttercms-app ``` ## Configuration diff --git a/examples/cms-contentful/README.md b/examples/cms-contentful/README.md index ca312fdce0cbb..6d8fc1e4d1092 100644 --- a/examples/cms-contentful/README.md +++ b/examples/cms-contentful/README.md @@ -40,7 +40,7 @@ npx create-next-app --example cms-contentful cms-contentful-app # or yarn create next-app --example cms-contentful cms-contentful-app # or -pnpm create next-app -- --example cms-contentful cms-contentful-app +pnpm create next-app --example cms-contentful cms-contentful-app ``` ## Configuration diff --git a/examples/cms-cosmic/README.md b/examples/cms-cosmic/README.md index 2a4ad2b60d2f4..b30b02462b217 100644 --- a/examples/cms-cosmic/README.md +++ b/examples/cms-cosmic/README.md @@ -40,7 +40,7 @@ npx create-next-app --example cms-cosmic cms-cosmic-app # or yarn create next-app --example cms-cosmic cms-cosmic-app # or -pnpm create next-app -- --example cms-cosmic cms-cosmic-app +pnpm create next-app --example cms-cosmic cms-cosmic-app ``` ## Configuration diff --git a/examples/cms-datocms/README.md b/examples/cms-datocms/README.md index ccbd280d990a8..e726c407e8731 100644 --- a/examples/cms-datocms/README.md +++ b/examples/cms-datocms/README.md @@ -40,7 +40,7 @@ npx create-next-app --example cms-datocms cms-datocms-app # or yarn create next-app --example cms-datocms cms-datocms-app # or -pnpm create next-app -- --example cms-datocms cms-datocms-app +pnpm create next-app --example cms-datocms cms-datocms-app ``` ## Configuration diff --git a/examples/cms-drupal/README.md b/examples/cms-drupal/README.md index a3aab21860ba7..043fa0232cd2c 100644 --- a/examples/cms-drupal/README.md +++ b/examples/cms-drupal/README.md @@ -39,7 +39,7 @@ npx create-next-app --example cms-drupal cms-drupal-app # or yarn create next-app --example cms-drupal cms-drupal-app # or -pnpm create next-app -- --example cms-drupal cms-drupal-app +pnpm create next-app --example cms-drupal cms-drupal-app ``` ## Setup Drupal diff --git a/examples/cms-ghost/README.md b/examples/cms-ghost/README.md index 611de450b9d61..44628164f0365 100644 --- a/examples/cms-ghost/README.md +++ b/examples/cms-ghost/README.md @@ -38,7 +38,7 @@ npx create-next-app --example cms-ghost cms-ghost-app # or yarn create next-app --example cms-ghost cms-ghost-app # or -pnpm create next-app -- --example cms-ghost cms-ghost-app +pnpm create next-app --example cms-ghost cms-ghost-app ``` ### Setp 1. Run Next.js in development mode diff --git a/examples/cms-graphcms/README.md b/examples/cms-graphcms/README.md index a28551428d21c..4136e75446169 100644 --- a/examples/cms-graphcms/README.md +++ b/examples/cms-graphcms/README.md @@ -43,7 +43,7 @@ npx create-next-app --example cms-graphcms cms-graphcms-app # or yarn create next-app --example cms-graphcms cms-graphcms-app # or -pnpm create next-app -- --example cms-graphcms cms-graphcms-app +pnpm create next-app --example cms-graphcms cms-graphcms-app ``` ## Configuration diff --git a/examples/cms-kontent/README.md b/examples/cms-kontent/README.md index ecfe7876177b5..f0844fdead6ce 100644 --- a/examples/cms-kontent/README.md +++ b/examples/cms-kontent/README.md @@ -40,7 +40,7 @@ npx create-next-app --example cms-kontent cms-kontent-app # or yarn create next-app --example cms-kontent cms-kontent-app # or -pnpm create next-app -- --example cms-kontent cms-kontent-app +pnpm create next-app --example cms-kontent cms-kontent-app ``` ## Configuration diff --git a/examples/cms-prepr/README.md b/examples/cms-prepr/README.md index bb2bb4c3b60d1..7f9dcf878f059 100644 --- a/examples/cms-prepr/README.md +++ b/examples/cms-prepr/README.md @@ -42,7 +42,7 @@ npx create-next-app --example cms-prepr cms-prepr-app # or yarn create next-app --example cms-prepr cms-prepr-app # or -pnpm create next-app -- --example cms-prepr cms-prepr-app +pnpm create next-app --example cms-prepr cms-prepr-app ``` ## Configuration diff --git a/examples/cms-prismic/README.md b/examples/cms-prismic/README.md index 923c861fb575e..2997b008c2ed1 100644 --- a/examples/cms-prismic/README.md +++ b/examples/cms-prismic/README.md @@ -39,7 +39,7 @@ npx create-next-app --example cms-prismic cms-prismic-app # or yarn create next-app --example cms-prismic cms-prismic-app # or -pnpm create next-app -- --example cms-prismic cms-prismic-app +pnpm create next-app --example cms-prismic cms-prismic-app ``` ## Configuration diff --git a/examples/cms-sanity/README.md b/examples/cms-sanity/README.md index af1247eaeeb3a..289d5dd86ffe1 100644 --- a/examples/cms-sanity/README.md +++ b/examples/cms-sanity/README.md @@ -46,7 +46,7 @@ npx create-next-app --example cms-sanity cms-sanity-app # or yarn create next-app --example cms-sanity cms-sanity-app # or -pnpm create next-app -- --example cms-sanity cms-sanity-app +pnpm create next-app --example cms-sanity cms-sanity-app ``` ## Configuration diff --git a/examples/cms-storyblok/README.md b/examples/cms-storyblok/README.md index c2c860b8a0fe4..b0e7dab8a0677 100644 --- a/examples/cms-storyblok/README.md +++ b/examples/cms-storyblok/README.md @@ -40,7 +40,7 @@ npx create-next-app --example cms-storyblok cms-storyblok-app # or yarn create next-app --example cms-storyblok cms-storyblok-app # or -pnpm create next-app -- --example cms-storyblok cms-storyblok-app +pnpm create next-app --example cms-storyblok cms-storyblok-app ``` ## Configuration diff --git a/examples/cms-strapi/README.md b/examples/cms-strapi/README.md index 68bb1b80504af..b341401751299 100644 --- a/examples/cms-strapi/README.md +++ b/examples/cms-strapi/README.md @@ -40,7 +40,7 @@ npx create-next-app --example cms-strapi cms-strapi-app # or yarn create next-app --example cms-strapi cms-strapi-app # or -pnpm create next-app -- --example cms-strapi cms-strapi-app +pnpm create next-app --example cms-strapi cms-strapi-app ``` ## Configuration diff --git a/examples/cms-takeshape/README.md b/examples/cms-takeshape/README.md index b794348e68ee7..4e4d16035232c 100644 --- a/examples/cms-takeshape/README.md +++ b/examples/cms-takeshape/README.md @@ -39,7 +39,7 @@ npx create-next-app --example cms-takeshape cms-takeshape-app # or yarn create next-app --example cms-takeshape cms-takeshape-app # or -pnpm create next-app -- --example cms-takeshape cms-takeshape-app +pnpm create next-app --example cms-takeshape cms-takeshape-app ``` ## Configuration diff --git a/examples/cms-tina/README.md b/examples/cms-tina/README.md index a8cf3f412752d..b1beba5b4093d 100644 --- a/examples/cms-tina/README.md +++ b/examples/cms-tina/README.md @@ -36,7 +36,7 @@ npx create-next-app --example cms-tina cms-tina-app # or yarn create next-app --example cms-tina cms-tina-app # or -pnpm create next-app -- --example cms-tina cms-tina-app +pnpm create next-app --example cms-tina cms-tina-app ``` ### Setp 1. Run Next.js in development mode diff --git a/examples/cms-umbraco-heartcore/README.md b/examples/cms-umbraco-heartcore/README.md index e2c582e4e647c..823bf42a0877c 100755 --- a/examples/cms-umbraco-heartcore/README.md +++ b/examples/cms-umbraco-heartcore/README.md @@ -40,7 +40,7 @@ npx create-next-app --example cms-umbraco-heartcore cms-umbraco-heartcore-app # or yarn create next-app --example cms-umbraco-heartcore cms-umbraco-heartcore-app # or -pnpm create next-app -- --example cms-umbraco-heartcore cms-umbraco-heartcore-app +pnpm create next-app --example cms-umbraco-heartcore cms-umbraco-heartcore-app ``` ## Configuration diff --git a/examples/cms-wordpress/README.md b/examples/cms-wordpress/README.md index d4e1e46a34bf7..86c53217302dc 100644 --- a/examples/cms-wordpress/README.md +++ b/examples/cms-wordpress/README.md @@ -39,7 +39,7 @@ npx create-next-app --example cms-wordpress cms-wordpress-app # or yarn create next-app --example cms-wordpress cms-wordpress-app # or -pnpm create next-app -- --example cms-wordpress cms-wordpress-app +pnpm create next-app --example cms-wordpress cms-wordpress-app ``` ## Configuration diff --git a/examples/custom-routes-proxying/README.md b/examples/custom-routes-proxying/README.md index b37e4230eda3a..f7a9c5af0d8a8 100644 --- a/examples/custom-routes-proxying/README.md +++ b/examples/custom-routes-proxying/README.md @@ -19,7 +19,7 @@ npx create-next-app --example custom-routes-proxying custom-routes-proxying-app # or yarn create next-app --example custom-routes-proxying custom-routes-proxying-app # or -pnpm create next-app -- --example custom-routes-proxying custom-routes-proxying-app +pnpm create next-app --example custom-routes-proxying custom-routes-proxying-app ``` ### Step 4. Run Next.js in development mode diff --git a/examples/custom-server-actionhero/README.md b/examples/custom-server-actionhero/README.md index 77c6a342396c1..7bbfc669d8d3d 100644 --- a/examples/custom-server-actionhero/README.md +++ b/examples/custom-server-actionhero/README.md @@ -14,7 +14,7 @@ npx create-next-app --example custom-server-actionhero custom-server-actionhero- # or yarn create next-app --example custom-server-actionhero custom-server-actionhero-app # or -pnpm create next-app -- --example custom-server-actionhero custom-server-actionhero-app +pnpm create next-app --example custom-server-actionhero custom-server-actionhero-app ``` ## How does this work? diff --git a/examples/custom-server-express/README.md b/examples/custom-server-express/README.md index 41b82471e3c14..e74a40b37ce9f 100644 --- a/examples/custom-server-express/README.md +++ b/examples/custom-server-express/README.md @@ -19,5 +19,5 @@ npx create-next-app --example custom-server-express custom-server-express-app # or yarn create next-app --example custom-server-express custom-server-express-app # or -pnpm create next-app -- --example custom-server-express custom-server-express-app +pnpm create next-app --example custom-server-express custom-server-express-app ``` diff --git a/examples/custom-server-fastify/README.md b/examples/custom-server-fastify/README.md index 0f0b532cdb238..3df92e93da596 100644 --- a/examples/custom-server-fastify/README.md +++ b/examples/custom-server-fastify/README.md @@ -21,5 +21,5 @@ npx create-next-app --example custom-server-fastify custom-server-fastify-app # or yarn create next-app --example custom-server-fastify custom-server-fastify-app # or -pnpm create next-app -- --example custom-server-fastify custom-server-fastify-app +pnpm create next-app --example custom-server-fastify custom-server-fastify-app ``` diff --git a/examples/custom-server-hapi/README.md b/examples/custom-server-hapi/README.md index becee221213db..f1ce054053dc2 100644 --- a/examples/custom-server-hapi/README.md +++ b/examples/custom-server-hapi/README.md @@ -19,5 +19,5 @@ npx create-next-app --example custom-server-hapi custom-server-hapi-app # or yarn create next-app --example custom-server-hapi custom-server-hapi-app # or -pnpm create next-app -- --example custom-server-hapi custom-server-hapi-app +pnpm create next-app --example custom-server-hapi custom-server-hapi-app ``` diff --git a/examples/custom-server-koa/README.md b/examples/custom-server-koa/README.md index c5c702bdef1e5..5671a49c930f2 100644 --- a/examples/custom-server-koa/README.md +++ b/examples/custom-server-koa/README.md @@ -19,7 +19,7 @@ npx create-next-app --example custom-server-koa custom-server-koa-app # or yarn create next-app --example custom-server-koa custom-server-koa-app # or -pnpm create next-app -- --example custom-server-koa custom-server-koa-app +pnpm create next-app --example custom-server-koa custom-server-koa-app ``` ## Side note: Enabling gzip compression diff --git a/examples/custom-server-polka/README.md b/examples/custom-server-polka/README.md index 551d8eb676bfc..edfff7e01c763 100644 --- a/examples/custom-server-polka/README.md +++ b/examples/custom-server-polka/README.md @@ -19,5 +19,5 @@ npx create-next-app --example custom-server-polka custom-server-polka-app # or yarn create next-app --example custom-server-polka custom-server-polka-app # or -pnpm create next-app -- --example custom-server-polka custom-server-polka-app +pnpm create next-app --example custom-server-polka custom-server-polka-app ``` diff --git a/examples/custom-server-typescript/README.md b/examples/custom-server-typescript/README.md index c40036d02b5b0..70a8ba35c8a7a 100644 --- a/examples/custom-server-typescript/README.md +++ b/examples/custom-server-typescript/README.md @@ -20,5 +20,5 @@ npx create-next-app --example custom-server-typescript custom-server-typescript- # or yarn create next-app --example custom-server-typescript custom-server-typescript-app # or -pnpm create next-app -- --example custom-server-typescript custom-server-typescript-app +pnpm create next-app --example custom-server-typescript custom-server-typescript-app ``` diff --git a/examples/data-fetch/README.md b/examples/data-fetch/README.md index 6e904dc1a36b5..0dd83e3cb1ae0 100644 --- a/examples/data-fetch/README.md +++ b/examples/data-fetch/README.md @@ -20,7 +20,7 @@ npx create-next-app --example data-fetch data-fetch-app # or yarn create next-app --example data-fetch data-fetch-app # or -pnpm create next-app -- --example data-fetch data-fetch-app +pnpm create next-app --example data-fetch data-fetch-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/dynamic-routing/README.md b/examples/dynamic-routing/README.md index 8166027a45537..bc0ac7af71554 100644 --- a/examples/dynamic-routing/README.md +++ b/examples/dynamic-routing/README.md @@ -25,7 +25,7 @@ npx create-next-app --example dynamic-routing dynamic-routing-app # or yarn create next-app --example dynamic-routing dynamic-routing-app # or -pnpm create next-app -- --example dynamic-routing dynamic-routing-app +pnpm create next-app --example dynamic-routing dynamic-routing-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/environment-variables/readme.md b/examples/environment-variables/readme.md index a915bc1ee31d4..3a01455fe2538 100644 --- a/examples/environment-variables/readme.md +++ b/examples/environment-variables/readme.md @@ -19,7 +19,7 @@ npx create-next-app --example environment-variables environment-variables-app # or yarn create next-app --example environment-variables environment-variables-app # or -pnpm create next-app -- --example environment-variables environment-variables-app +pnpm create next-app --example environment-variables environment-variables-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/fast-refresh-demo/README.md b/examples/fast-refresh-demo/README.md index 830b078af9d1c..5dd4ba0db09e4 100644 --- a/examples/fast-refresh-demo/README.md +++ b/examples/fast-refresh-demo/README.md @@ -19,7 +19,7 @@ npx create-next-app --example fast-refresh-demo fast-refresh-demo-app # or yarn create next-app --example fast-refresh-demo fast-refresh-demo-app # or -pnpm create next-app -- --example fast-refresh-demo fast-refresh-demo-app +pnpm create next-app --example fast-refresh-demo fast-refresh-demo-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/gh-pages/README.md b/examples/gh-pages/README.md index b0edc71ecb7a4..4121a4e946752 100644 --- a/examples/gh-pages/README.md +++ b/examples/gh-pages/README.md @@ -11,7 +11,7 @@ npx create-next-app --example gh-pages gh-pages-app # or yarn create next-app --example gh-pages gh-pages-app # or -pnpm create next-app -- --example gh-pages gh-pages-app +pnpm create next-app --example gh-pages gh-pages-app ``` ### Deploy it to github diff --git a/examples/head-elements/README.md b/examples/head-elements/README.md index 311be46121e23..262465782803b 100644 --- a/examples/head-elements/README.md +++ b/examples/head-elements/README.md @@ -19,7 +19,7 @@ npx create-next-app --example head-elements head-elements-app # or yarn create next-app --example head-elements head-elements-app # or -pnpm create next-app -- --example head-elements head-elements-app +pnpm create next-app --example head-elements head-elements-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/headers/README.md b/examples/headers/README.md index 98d5d3aae99b7..8be79709e87c9 100644 --- a/examples/headers/README.md +++ b/examples/headers/README.md @@ -19,7 +19,7 @@ npx create-next-app --example headers headers-app # or yarn create next-app --example headers headers-app # or -pnpm create next-app -- --example headers headers-app +pnpm create next-app --example headers headers-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/hello-world-esm/README.md b/examples/hello-world-esm/README.md index 13e37873d5ea0..9ee130e77bfef 100644 --- a/examples/hello-world-esm/README.md +++ b/examples/hello-world-esm/README.md @@ -17,7 +17,7 @@ npx create-next-app --example hello-world-esm hello-world-esm-app # or yarn create next-app --example hello-world-esm hello-world-esm-app # or -pnpm create next-app -- --example hello-world-esm hello-world-esm-app +pnpm create next-app --example hello-world-esm hello-world-esm-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/hello-world/README.md b/examples/hello-world/README.md index 9e5679dd953f7..238128474f324 100644 --- a/examples/hello-world/README.md +++ b/examples/hello-world/README.md @@ -17,7 +17,7 @@ npx create-next-app --example hello-world hello-world-app # or yarn create next-app --example hello-world hello-world-app # or -pnpm create next-app -- --example hello-world hello-world-app +pnpm create next-app --example hello-world hello-world-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/i18n-routing/README.md b/examples/i18n-routing/README.md index 5b64f1b5f12b5..fc3dd64a841ed 100644 --- a/examples/i18n-routing/README.md +++ b/examples/i18n-routing/README.md @@ -19,7 +19,7 @@ npx create-next-app --example i18n-routing i18n-app # or yarn create next-app --example i18n-routing i18n-app # or -pnpm create next-app -- --example i18n-routing i18n-app +pnpm create next-app --example i18n-routing i18n-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/image-component/README.md b/examples/image-component/README.md index 601df875a5961..d56babeeaaa88 100644 --- a/examples/image-component/README.md +++ b/examples/image-component/README.md @@ -23,7 +23,7 @@ npx create-next-app --example image-component image-app # or yarn create next-app --example image-component image-app # or -pnpm create next-app -- --example image-component image-app +pnpm create next-app --example image-component image-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/layout-component/README.md b/examples/layout-component/README.md index 97150285fbf3f..03f259913c41b 100644 --- a/examples/layout-component/README.md +++ b/examples/layout-component/README.md @@ -17,7 +17,7 @@ npx create-next-app --example layout-component layout-component-app # or yarn create next-app --example layout-component layout-component-app # or -pnpm create next-app -- --example layout-component layout-component-app +pnpm create next-app --example layout-component layout-component-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/markdoc/README.md b/examples/markdoc/README.md index e9b53024055bc..d7c4ebfe25f59 100644 --- a/examples/markdoc/README.md +++ b/examples/markdoc/README.md @@ -17,7 +17,7 @@ npx create-next-app --example markdoc markdoc-app # or yarn create next-app --example markdoc markdoc-app # or -pnpm create next-app -- --example markdoc markdoc-app +pnpm create next-app --example markdoc markdoc-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/modularize-imports/README.md b/examples/modularize-imports/README.md index 079b2cd939292..1aaced51e62a4 100644 --- a/examples/modularize-imports/README.md +++ b/examples/modularize-imports/README.md @@ -23,7 +23,7 @@ npx create-next-app --example modularize-imports modularize-imports-app # or yarn create next-app --example modularize-imports modularize-imports-app # or -pnpm create next-app -- --example modularize-imports modularize-imports-app +pnpm create next-app --example modularize-imports modularize-imports-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/nested-components/README.md b/examples/nested-components/README.md index 90f2404019756..9014062b08582 100644 --- a/examples/nested-components/README.md +++ b/examples/nested-components/README.md @@ -17,7 +17,7 @@ npx create-next-app --example nested-components nested-components-app # or yarn create next-app --example nested-components nested-components-app # or -pnpm create next-app -- --example nested-components nested-components-app +pnpm create next-app --example nested-components nested-components-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/next-forms/README.md b/examples/next-forms/README.md index 4a5afc27b78d9..6d34f13010c07 100644 --- a/examples/next-forms/README.md +++ b/examples/next-forms/README.md @@ -17,7 +17,7 @@ npx create-next-app --example next-forms next-forms-app # or yarn create next-app --example next-forms next-forms-app # or -pnpm create next-app -- --example next-forms next-forms-app +pnpm create next-app --example next-forms next-forms-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/progressive-render/README.md b/examples/progressive-render/README.md index 85a91d98763b9..d5166c364b52c 100644 --- a/examples/progressive-render/README.md +++ b/examples/progressive-render/README.md @@ -31,7 +31,7 @@ npx create-next-app --example progressive-render progressive-render-app # or yarn create next-app --example progressive-render progressive-render-app # or -pnpm create next-app -- --example progressive-render progressive-render-app +pnpm create next-app --example progressive-render progressive-render-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/progressive-web-app/README.md b/examples/progressive-web-app/README.md index f1afdd021d68f..c2c18f49974af 100644 --- a/examples/progressive-web-app/README.md +++ b/examples/progressive-web-app/README.md @@ -17,7 +17,7 @@ npx create-next-app --example progressive-web-app progressive-web-app # or yarn create next-app --example progressive-web-app progressive-web-app # or -pnpm create next-app -- --example progressive-web-app progressive-web-app +pnpm create next-app --example progressive-web-app progressive-web-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/react-remove-properties/README.md b/examples/react-remove-properties/README.md index 6b20157cf9c9f..4551fa12d5df0 100644 --- a/examples/react-remove-properties/README.md +++ b/examples/react-remove-properties/README.md @@ -17,7 +17,7 @@ npx create-next-app --example react-remove-properties react-remove-properties-ap # or yarn create next-app --example react-remove-properties react-remove-properties-app # or -pnpm create next-app -- --example react-remove-properties react-remove-properties-app +pnpm create next-app --example react-remove-properties react-remove-properties-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/redirects/README.md b/examples/redirects/README.md index 2f20c527ff452..503b206243d2b 100644 --- a/examples/redirects/README.md +++ b/examples/redirects/README.md @@ -19,7 +19,7 @@ npx create-next-app --example redirects redirects-app # or yarn create next-app --example redirects redirects-app # or -pnpm create next-app -- --example redirects redirects-app +pnpm create next-app --example redirects redirects-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/remove-console/README.md b/examples/remove-console/README.md index 0152f9fff6868..6dff869321acf 100644 --- a/examples/remove-console/README.md +++ b/examples/remove-console/README.md @@ -17,7 +17,7 @@ npx create-next-app --example remove-console remove-console-app # or yarn create next-app --example remove-console remove-console-app # or -pnpm create next-app -- --example remove-console remove-console-app +pnpm create next-app --example remove-console remove-console-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/rewrites/README.md b/examples/rewrites/README.md index c95afaacea9e8..a5ab0d473b8f6 100644 --- a/examples/rewrites/README.md +++ b/examples/rewrites/README.md @@ -19,7 +19,7 @@ npx create-next-app --example rewrites rewrites-app # or yarn create next-app --example rewrites rewrites-app # or -pnpm create next-app -- --example rewrites rewrites-app +pnpm create next-app --example rewrites rewrites-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/script-component/README.md b/examples/script-component/README.md index 93ff6af813775..8cc67cf6c6c0d 100644 --- a/examples/script-component/README.md +++ b/examples/script-component/README.md @@ -23,7 +23,7 @@ npx create-next-app --example script-component script-component-app # or yarn create next-app --example script-component script-component-app # or -pnpm create next-app -- --example script-component script-component-app +pnpm create next-app --example script-component script-component-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/ssr-caching/README.md b/examples/ssr-caching/README.md index 1c6040059ae29..07b19edb9c02c 100644 --- a/examples/ssr-caching/README.md +++ b/examples/ssr-caching/README.md @@ -23,7 +23,7 @@ npx create-next-app --example ssr-caching ssr-caching-app # or yarn create next-app --example ssr-caching ssr-caching-app # or -pnpm create next-app -- --example ssr-caching ssr-caching-app +pnpm create next-app --example ssr-caching ssr-caching-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/styled-jsx-with-csp/README.md b/examples/styled-jsx-with-csp/README.md index 16b2da8f66992..5bad8543b3947 100644 --- a/examples/styled-jsx-with-csp/README.md +++ b/examples/styled-jsx-with-csp/README.md @@ -23,7 +23,7 @@ npx create-next-app --example styled-jsx-with-csp styled-jsx-with-csp-app # or yarn create next-app --example styled-jsx-with-csp styled-jsx-with-csp-app # or -pnpm create next-app -- --example styled-jsx-with-csp styled-jsx-with-csp-app +pnpm create next-app --example styled-jsx-with-csp styled-jsx-with-csp-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/svg-components/README.md b/examples/svg-components/README.md index 36f0a5959d318..a02efaf4e444c 100644 --- a/examples/svg-components/README.md +++ b/examples/svg-components/README.md @@ -17,7 +17,7 @@ npx create-next-app --example svg-components svg-components-app # or yarn create next-app --example svg-components svg-components-app # or -pnpm create next-app -- --example svg-components svg-components-app +pnpm create next-app --example svg-components svg-components-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/using-preact/README.md b/examples/using-preact/README.md index d213e1b2f653e..9a6ff86971202 100644 --- a/examples/using-preact/README.md +++ b/examples/using-preact/README.md @@ -17,7 +17,7 @@ npx create-next-app --example using-preact using-preact-app # or yarn create next-app --example using-preact using-preact-app # or -pnpm create next-app -- --example using-preact using-preact-app +pnpm create next-app --example using-preact using-preact-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/using-router/README.md b/examples/using-router/README.md index 25bb43279d135..87638994d7d28 100644 --- a/examples/using-router/README.md +++ b/examples/using-router/README.md @@ -20,7 +20,7 @@ npx create-next-app --example using-router using-router-app # or yarn create next-app --example using-router using-router-app # or -pnpm create next-app -- --example using-router using-router-app +pnpm create next-app --example using-router using-router-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-absolute-imports/README.md b/examples/with-absolute-imports/README.md index e63d4c212827c..833fc0dab417e 100644 --- a/examples/with-absolute-imports/README.md +++ b/examples/with-absolute-imports/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-absolute-imports with-absolute-imports-app # or yarn create next-app --example with-absolute-imports with-absolute-imports-app # or -pnpm create next-app -- --example with-absolute-imports with-absolute-imports-app +pnpm create next-app --example with-absolute-imports with-absolute-imports-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-algolia-react-instantsearch/README.md b/examples/with-algolia-react-instantsearch/README.md index 4156b97027054..84f064c898990 100644 --- a/examples/with-algolia-react-instantsearch/README.md +++ b/examples/with-algolia-react-instantsearch/README.md @@ -11,7 +11,7 @@ npx create-next-app --example with-algolia-react-instantsearch with-algolia-reac # or yarn create next-app --example with-algolia-react-instantsearch with-algolia-react-instantsearch-app # or -pnpm create next-app -- --example with-algolia-react-instantsearch with-algolia-react-instantsearch-app +pnpm create next-app --example with-algolia-react-instantsearch with-algolia-react-instantsearch-app ``` To set up Algolia: diff --git a/examples/with-ant-design/README.md b/examples/with-ant-design/README.md index d281e1604c12c..5789eda0151c4 100644 --- a/examples/with-ant-design/README.md +++ b/examples/with-ant-design/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-ant-design with-ant-design-app # or yarn create next-app --example with-ant-design with-ant-design-app # or -pnpm create next-app -- --example with-ant-design with-ant-design-app +pnpm create next-app --example with-ant-design with-ant-design-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-aphrodite/README.md b/examples/with-aphrodite/README.md index 1c0e883bf12b5..e677089032e83 100644 --- a/examples/with-aphrodite/README.md +++ b/examples/with-aphrodite/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-aphrodite with-aphrodite-app # or yarn create next-app --example with-aphrodite with-aphrodite-app # or -pnpm create next-app -- --example with-aphrodite with-aphrodite-app +pnpm create next-app --example with-aphrodite with-aphrodite-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-apollo-and-redux/README.md b/examples/with-apollo-and-redux/README.md index 614ff69426fad..2b96ce7c98211 100644 --- a/examples/with-apollo-and-redux/README.md +++ b/examples/with-apollo-and-redux/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-apollo-and-redux with-apollo-and-redux-app # or yarn create next-app --example with-apollo-and-redux with-apollo-and-redux-app # or -pnpm create next-app -- --example with-apollo-and-redux with-apollo-and-redux-app +pnpm create next-app --example with-apollo-and-redux with-apollo-and-redux-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-apollo-neo4j-graphql/README.md b/examples/with-apollo-neo4j-graphql/README.md index 366f8b21ae889..6fb3fac3b8afe 100644 --- a/examples/with-apollo-neo4j-graphql/README.md +++ b/examples/with-apollo-neo4j-graphql/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-apollo-neo4j-graphql with-apollo-neo4j-graphq # or yarn create next-app --example with-apollo-neo4j-graphql with-apollo-neo4j-graphql-app # or -pnpm create next-app -- --example with-apollo-neo4j-graphql with-apollo-neo4j-graphql-app +pnpm create next-app --example with-apollo-neo4j-graphql with-apollo-neo4j-graphql-app ``` ## Configuration diff --git a/examples/with-apollo/README.md b/examples/with-apollo/README.md index 28b9d3d224910..190e61cfbd3b4 100644 --- a/examples/with-apollo/README.md +++ b/examples/with-apollo/README.md @@ -25,7 +25,7 @@ npx create-next-app --example with-apollo with-apollo-app # or yarn create next-app --example with-apollo with-apollo-app # or -pnpm create next-app -- --example with-apollo with-apollo-app +pnpm create next-app --example with-apollo with-apollo-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-app-layout/README.md b/examples/with-app-layout/README.md index ddd4731ba92ac..2d93037ae99e8 100644 --- a/examples/with-app-layout/README.md +++ b/examples/with-app-layout/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-app-layout with-app-layout-app # or yarn create next-app --example with-app-layout with-app-layout-app # or -pnpm create next-app -- --example with-app-layout with-app-layout-app +pnpm create next-app --example with-app-layout with-app-layout-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-aws-amplify-typescript/README.md b/examples/with-aws-amplify-typescript/README.md index 22d7e892b79e3..752972a4b0405 100644 --- a/examples/with-aws-amplify-typescript/README.md +++ b/examples/with-aws-amplify-typescript/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-aws-amplify-typescript nextjs-aws-amplify-typ # or yarn create next-app --example with-aws-amplify-typescript nextjs-aws-amplify-typescript-app # or -pnpm create next-app -- --example with-aws-amplify-typescript nextjs-aws-amplify-typescript-app +pnpm create next-app --example with-aws-amplify-typescript nextjs-aws-amplify-typescript-app ``` ### Initialize and deploy the Amplify project diff --git a/examples/with-aws-amplify/README.md b/examples/with-aws-amplify/README.md index 6d0a0d14cf3b7..2feef30229254 100644 --- a/examples/with-aws-amplify/README.md +++ b/examples/with-aws-amplify/README.md @@ -18,7 +18,7 @@ npx create-next-app --example with-aws-amplify nextjs-aws-amplify-app # or yarn create next-app --example with-aws-amplify nextjs-aws-amplify-app # or -pnpm create next-app -- --example with-aws-amplify nextjs-aws-amplify-app +pnpm create next-app --example with-aws-amplify nextjs-aws-amplify-app ``` ### Initialize and deploy the Amplify project diff --git a/examples/with-babel-macros/README.md b/examples/with-babel-macros/README.md index f3bd94cec4fa1..e14f5caa3ada0 100644 --- a/examples/with-babel-macros/README.md +++ b/examples/with-babel-macros/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-babel-macros with-babel-macros-app # or yarn create next-app --example with-babel-macros with-babel-macros-app # or -pnpm create next-app -- --example with-babel-macros with-babel-macros-app +pnpm create next-app --example with-babel-macros with-babel-macros-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-carbon-components/README.md b/examples/with-carbon-components/README.md index 59ee522dd48cb..5157172650f2f 100644 --- a/examples/with-carbon-components/README.md +++ b/examples/with-carbon-components/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-carbon-components with-carbon-components-app # or yarn create next-app --example with-carbon-components with-carbon-components-app # or -pnpm create next-app -- --example with-carbon-components with-carbon-components-app +pnpm create next-app --example with-carbon-components with-carbon-components-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-cerebral/README.md b/examples/with-cerebral/README.md index a285a1548ba93..038ea27ce102a 100644 --- a/examples/with-cerebral/README.md +++ b/examples/with-cerebral/README.md @@ -49,7 +49,7 @@ npx create-next-app --example with-cerebral with-cerebral-app # or yarn create next-app --example with-cerebral with-cerebral-app # or -pnpm create next-app -- --example with-cerebral with-cerebral-app +pnpm create next-app --example with-cerebral with-cerebral-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-chakra-ui/README.md b/examples/with-chakra-ui/README.md index f223d1edf86a6..d5af7f5b37e38 100644 --- a/examples/with-chakra-ui/README.md +++ b/examples/with-chakra-ui/README.md @@ -23,7 +23,7 @@ npx create-next-app --example with-chakra-ui with-chakra-ui-app # or yarn create next-app --example with-chakra-ui with-chakra-ui-app # or -pnpm create next-app -- --example with-chakra-ui with-chakra-ui-app +pnpm create next-app --example with-chakra-ui with-chakra-ui-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-clerk/README.md b/examples/with-clerk/README.md index da5177f22d2e2..e7606a544d870 100644 --- a/examples/with-clerk/README.md +++ b/examples/with-clerk/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-clerk with-clerk-app # or yarn create next-app --example with-clerk with-clerk-app # or -pnpm create next-app -- --example with-clerk with-clerk-app +pnpm create next-app --example with-clerk with-clerk-app ``` To run the example locally you need to: diff --git a/examples/with-compiled-css/README.md b/examples/with-compiled-css/README.md index ec442cf244e0d..baf1b60cb1c8f 100644 --- a/examples/with-compiled-css/README.md +++ b/examples/with-compiled-css/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-compiled-css with-compiled-css-app # or yarn create next-app --example with-compiled-css with-compiled-css-app # or -pnpm create next-app -- --example with-compiled-css with-compiled-css-app +pnpm create next-app --example with-compiled-css with-compiled-css-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-context-api/README.md b/examples/with-context-api/README.md index 54ee4d89a81d5..b128b72a754d2 100644 --- a/examples/with-context-api/README.md +++ b/examples/with-context-api/README.md @@ -25,7 +25,7 @@ npx create-next-app --example with-context-api with-context-api-app # or yarn create next-app --example with-context-api with-context-api-app # or -pnpm create next-app -- --example with-context-api with-context-api-app +pnpm create next-app --example with-context-api with-context-api-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-cookie-auth-fauna/README.md b/examples/with-cookie-auth-fauna/README.md index acaf9657ed6ad..ede43c6ed4e6c 100644 --- a/examples/with-cookie-auth-fauna/README.md +++ b/examples/with-cookie-auth-fauna/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-cookie-auth-fauna with-cookie-auth-fauna-app # or yarn create next-app --example with-cookie-auth-fauna with-cookie-auth-fauna-app # or -pnpm create next-app -- --example with-cookie-auth-fauna with-cookie-auth-fauna-app +pnpm create next-app --example with-cookie-auth-fauna with-cookie-auth-fauna-app ``` ### Run locally diff --git a/examples/with-couchbase/README.md b/examples/with-couchbase/README.md index 10ad4e6aa4cfe..a1cbdf178518f 100644 --- a/examples/with-couchbase/README.md +++ b/examples/with-couchbase/README.md @@ -23,7 +23,7 @@ npx create-next-app --example with-couchbase with-couchbase-app # or yarn create next-app --example with-couchbase with-couchbase-app # or -pnpm create next-app -- --example with-couchbase with-couchbase-app +pnpm create next-app --example with-couchbase with-couchbase-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-cssed/README.md b/examples/with-cssed/README.md index 8dd8912cfd249..815175a9bbc40 100644 --- a/examples/with-cssed/README.md +++ b/examples/with-cssed/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-cssed with-cssed-app # or yarn create next-app --example with-cssed with-cssed-app # or -pnpm create next-app -- --example with-cssed with-cssed-app +pnpm create next-app --example with-cssed with-cssed-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-custom-babel-config/README.md b/examples/with-custom-babel-config/README.md index 68659e98c298f..cdc2d297c7e99 100644 --- a/examples/with-custom-babel-config/README.md +++ b/examples/with-custom-babel-config/README.md @@ -23,7 +23,7 @@ npx create-next-app --example with-custom-babel-config with-custom-babel-config- # or yarn create next-app --example with-custom-babel-config with-custom-babel-config-app # or -pnpm create next-app -- --example with-custom-babel-config with-custom-babel-config-app +pnpm create next-app --example with-custom-babel-config with-custom-babel-config-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-cxs/README.md b/examples/with-cxs/README.md index 659c55105be02..ace7df8e67e01 100644 --- a/examples/with-cxs/README.md +++ b/examples/with-cxs/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-cxs with-cxs-app # or yarn create next-app --example with-cxs with-cxs-app # or -pnpm create next-app -- --example with-cxs with-cxs-app +pnpm create next-app --example with-cxs with-cxs-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-cypress/README.md b/examples/with-cypress/README.md index 4c04df391f2af..fd3f3fb5b91ac 100644 --- a/examples/with-cypress/README.md +++ b/examples/with-cypress/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-cypress with-cypress-app # or yarn create next-app --example with-cypress with-cypress-app # or -pnpm create next-app -- --example with-cypress with-cypress-app +pnpm create next-app --example with-cypress with-cypress-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-deta-base/README.md b/examples/with-deta-base/README.md index d7fa23ed0c309..9a7d2f40880fc 100644 --- a/examples/with-deta-base/README.md +++ b/examples/with-deta-base/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-deta-base with-deta-base-app # or yarn create next-app --example with-deta-base with-deta-base-app # or -pnpm create next-app -- --example with-deta-base with-deta-base-app +pnpm create next-app --example with-deta-base with-deta-base-app ``` ## Configuration diff --git a/examples/with-docker-multi-env/README.md b/examples/with-docker-multi-env/README.md index d3a55d14e15eb..c4cb587b0ada6 100644 --- a/examples/with-docker-multi-env/README.md +++ b/examples/with-docker-multi-env/README.md @@ -11,7 +11,7 @@ npx create-next-app --example with-docker-multi-env nextjs-docker-multi-env # or yarn create next-app --example with-docker-multi-env nextjs-docker-multi-env # or -pnpm create next-app -- --example with-docker-multi-env nextjs-docker-multi-env +pnpm create next-app --example with-docker-multi-env nextjs-docker-multi-env ``` Enter the values in the `.env.development.sample`, `.env.staging.sample`, `.env.production.sample` files to be used for each environments. diff --git a/examples/with-docker/README.md b/examples/with-docker/README.md index 26bec72f8caed..53e5a51310e77 100644 --- a/examples/with-docker/README.md +++ b/examples/with-docker/README.md @@ -11,7 +11,7 @@ npx create-next-app --example with-docker nextjs-docker # or yarn create next-app --example with-docker nextjs-docker # or -pnpm create next-app -- --example with-docker nextjs-docker +pnpm create next-app --example with-docker nextjs-docker ``` ## Using Docker diff --git a/examples/with-draft-js/README.md b/examples/with-draft-js/README.md index 00da5bb6f6069..2837128840bb7 100644 --- a/examples/with-draft-js/README.md +++ b/examples/with-draft-js/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-draft-js with-draft-js-app # or yarn create next-app --example with-draft-js with-draft-js-app # or -pnpm create next-app -- --example with-draft-js with-draft-js-app +pnpm create next-app --example with-draft-js with-draft-js-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-dynamic-import/README.md b/examples/with-dynamic-import/README.md index 5a3d394b5f229..a2ce8f59193bb 100644 --- a/examples/with-dynamic-import/README.md +++ b/examples/with-dynamic-import/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-dynamic-import with-dynamic-import-app # or yarn create next-app --example with-dynamic-import with-dynamic-import-app # or -pnpm create next-app -- --example with-dynamic-import with-dynamic-import-app +pnpm create next-app --example with-dynamic-import with-dynamic-import-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-edgedb/README.md b/examples/with-edgedb/README.md index a5048cd6ba4d2..d6dbb5a0e730f 100644 --- a/examples/with-edgedb/README.md +++ b/examples/with-edgedb/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-edgedb with-edgedb-app # or yarn create next-app --example with-edgedb with-edgedb-app # or -pnpm create next-app -- --example with-edgedb with-edgedb-app +pnpm create next-app --example with-edgedb with-edgedb-app ``` Then `cd` into the created directory. diff --git a/examples/with-elasticsearch/README.md b/examples/with-elasticsearch/README.md index 60366babb7f04..a52faecadd989 100644 --- a/examples/with-elasticsearch/README.md +++ b/examples/with-elasticsearch/README.md @@ -22,7 +22,7 @@ npx create-next-app --example with-elasticsearch with-elasticsearch-app # or yarn create next-app --example with-elasticsearch with-elasticsearch-app # or -pnpm create next-app -- --example with-elasticsearch with-elasticsearch-app +pnpm create next-app --example with-elasticsearch with-elasticsearch-app ``` ## Configuration diff --git a/examples/with-electron-typescript/README.md b/examples/with-electron-typescript/README.md index 8e98fe27cdab9..a883545c62aea 100644 --- a/examples/with-electron-typescript/README.md +++ b/examples/with-electron-typescript/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-electron-typescript with-electron-typescript- # or yarn create next-app --example with-electron-typescript with-electron-typescript-app # or -pnpm create next-app -- --example with-electron-typescript with-electron-typescript-app +pnpm create next-app --example with-electron-typescript with-electron-typescript-app ``` Available commands: diff --git a/examples/with-electron/README.md b/examples/with-electron/README.md index bf91077c7dab1..769e8e723c733 100644 --- a/examples/with-electron/README.md +++ b/examples/with-electron/README.md @@ -15,7 +15,7 @@ npx create-next-app --example with-electron with-electron-app # or yarn create next-app --example with-electron with-electron-app # or -pnpm create next-app -- --example with-electron with-electron-app +pnpm create next-app --example with-electron with-electron-app ``` You can create the production app using `npm run dist`. diff --git a/examples/with-emotion-swc/README.md b/examples/with-emotion-swc/README.md index 5ab0aa222feae..6d80b200bd823 100644 --- a/examples/with-emotion-swc/README.md +++ b/examples/with-emotion-swc/README.md @@ -27,7 +27,7 @@ npx create-next-app --example with-emotion-swc with-emotion-swc-app # or yarn create next-app --example with-emotion-swc with-emotion-swc-app # or -pnpm create next-app -- --example with-emotion-swc with-emotion-swc-app +pnpm create next-app --example with-emotion-swc with-emotion-swc-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-emotion-vanilla/README.md b/examples/with-emotion-vanilla/README.md index 164833fa5f75c..0e247d1ec654c 100644 --- a/examples/with-emotion-vanilla/README.md +++ b/examples/with-emotion-vanilla/README.md @@ -20,7 +20,7 @@ npx create-next-app --example with-emotion-vanilla with-emotion-vanilla-app # or yarn create next-app --example with-emotion-vanilla with-emotion-vanilla-app # or -pnpm create next-app -- --example with-emotion-vanilla with-emotion-vanilla-app +pnpm create next-app --example with-emotion-vanilla with-emotion-vanilla-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/import?filter=next.js&utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-emotion/README.md b/examples/with-emotion/README.md index c00c51c55c5a7..e1fa991d0071b 100644 --- a/examples/with-emotion/README.md +++ b/examples/with-emotion/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-emotion with-emotion-app # or yarn create next-app --example with-emotion with-emotion-app # or -pnpm create next-app -- --example with-emotion with-emotion-app +pnpm create next-app --example with-emotion with-emotion-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-env-from-next-config-js/README.md b/examples/with-env-from-next-config-js/README.md index 59754430ce453..81cddebb057b3 100644 --- a/examples/with-env-from-next-config-js/README.md +++ b/examples/with-env-from-next-config-js/README.md @@ -27,7 +27,7 @@ npx create-next-app --example with-env-from-next-config-js with-env-from-next-co # or yarn create next-app --example with-env-from-next-config-js with-env-from-next-config-js-app # or -pnpm create next-app -- --example with-env-from-next-config-js with-env-from-next-config-js-app +pnpm create next-app --example with-env-from-next-config-js with-env-from-next-config-js-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-eslint/README.md b/examples/with-eslint/README.md index e93f6c4b2a8ce..1a0f3b031ff91 100644 --- a/examples/with-eslint/README.md +++ b/examples/with-eslint/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-eslint with-eslint-app # or yarn create next-app --example with-eslint with-eslint-app # or -pnpm create next-app -- --example with-eslint with-eslint-app +pnpm create next-app --example with-eslint with-eslint-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-expo-typescript/README.md b/examples/with-expo-typescript/README.md index e262758a708d3..46f19c6605ecf 100644 --- a/examples/with-expo-typescript/README.md +++ b/examples/with-expo-typescript/README.md @@ -35,7 +35,7 @@ npx create-next-app --example with-expo-typescript with-expo-typescript-app # or yarn create next-app --example with-expo-typescript with-expo-typescript-app # or -pnpm create next-app -- --example with-expo-typescript with-expo-typescript-app +pnpm create next-app --example with-expo-typescript with-expo-typescript-app ``` ### Running web diff --git a/examples/with-expo/README.md b/examples/with-expo/README.md index 327683e14e3a8..6a382a5c55346 100644 --- a/examples/with-expo/README.md +++ b/examples/with-expo/README.md @@ -35,7 +35,7 @@ npx create-next-app --example with-expo with-expo-app # or yarn create next-app --example with-expo with-expo-app # or -pnpm create next-app -- --example with-expo with-expo-app +pnpm create next-app --example with-expo with-expo-app ``` ### Running web diff --git a/examples/with-facebook-pixel/README.md b/examples/with-facebook-pixel/README.md index 2c1ce11533713..23bd4d465fb05 100644 --- a/examples/with-facebook-pixel/README.md +++ b/examples/with-facebook-pixel/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-facebook-pixel with-facebook-pixel-app # or yarn create next-app --example with-facebook-pixel with-facebook-pixel-app # or -pnpm create next-app -- --example with-facebook-pixel with-facebook-pixel-app +pnpm create next-app --example with-facebook-pixel with-facebook-pixel-app ``` Next, copy the `.env.local.example` file in this directory to `.env.local` (which will be ignored by Git): diff --git a/examples/with-fauna/README.md b/examples/with-fauna/README.md index 9047eb07b2eb0..177e1eef42d38 100644 --- a/examples/with-fauna/README.md +++ b/examples/with-fauna/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-fauna with-fauna-app # or yarn create next-app --example with-fauna with-fauna-app # or -pnpm create next-app -- --example with-fauna with-fauna-app +pnpm create next-app --example with-fauna with-fauna-app ``` You can start with this template [using `create-next-app`](#using-create-next-app) or by [downloading the repository manually](#download-manually). diff --git a/examples/with-fela/README.md b/examples/with-fela/README.md index fbba3342cfd46..f3c8f2381a16d 100755 --- a/examples/with-fela/README.md +++ b/examples/with-fela/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-fela with-fela-app # or yarn create next-app --example with-fela with-fela-app # or -pnpm create next-app -- --example with-fela with-fela-app +pnpm create next-app --example with-fela with-fela-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-filbert/README.md b/examples/with-filbert/README.md index 24f3f8eeaebb3..0c7353d71eae2 100644 --- a/examples/with-filbert/README.md +++ b/examples/with-filbert/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-filbert with-filbert-app # or yarn create next-app --example with-filbert with-filbert-app # or -pnpm create next-app -- --example with-filbert with-filbert-app +pnpm create next-app --example with-filbert with-filbert-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-firebase-cloud-messaging/README.md b/examples/with-firebase-cloud-messaging/README.md index 1fe122d1d3f9d..ba8521a097be4 100644 --- a/examples/with-firebase-cloud-messaging/README.md +++ b/examples/with-firebase-cloud-messaging/README.md @@ -11,7 +11,7 @@ npx create-next-app --example with-firebase-cloud-messaging with-firebase-cloud- # or yarn create next-app --example with-firebase-cloud-messaging with-firebase-cloud-messaging-app # or -pnpm create next-app -- --example with-firebase-cloud-messaging with-firebase-cloud-messaging-app +pnpm create next-app --example with-firebase-cloud-messaging with-firebase-cloud-messaging-app ``` ## Set your send id diff --git a/examples/with-firebase-hosting/README.md b/examples/with-firebase-hosting/README.md index 66d82679221ea..b44620a79e826 100644 --- a/examples/with-firebase-hosting/README.md +++ b/examples/with-firebase-hosting/README.md @@ -22,7 +22,7 @@ npx create-next-app --example with-firebase-hosting with-firebase-hosting-app # or yarn create next-app --example with-firebase-hosting with-firebase-hosting-app # or -pnpm create next-app -- --example with-firebase-hosting with-firebase-hosting-app +pnpm create next-app --example with-firebase-hosting with-firebase-hosting-app ``` **Important:** Update `.firebaserc` and add your firebase project ID. diff --git a/examples/with-firebase/README.md b/examples/with-firebase/README.md index 5f83136f87034..2da7e8747d7c5 100644 --- a/examples/with-firebase/README.md +++ b/examples/with-firebase/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-firebase with-firebase-app # or yarn create next-app --example with-firebase with-firebase-app # or -pnpm create next-app -- --example with-firebase with-firebase-app +pnpm create next-app --example with-firebase with-firebase-app ``` ## Configuration diff --git a/examples/with-flow/README.md b/examples/with-flow/README.md index dc2fd057d6dba..941bfe74a1bb2 100644 --- a/examples/with-flow/README.md +++ b/examples/with-flow/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-flow with-flow-app # or yarn create next-app --example with-flow with-flow-app # or -pnpm create next-app -- --example with-flow with-flow-app +pnpm create next-app --example with-flow with-flow-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-framer-motion/README.md b/examples/with-framer-motion/README.md index cb0620e70c2b8..d130d3127ef8a 100644 --- a/examples/with-framer-motion/README.md +++ b/examples/with-framer-motion/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-framer-motion with-framer-motion-app # or yarn create next-app --example with-framer-motion with-framer-motion-app # or -pnpm create next-app -- --example with-framer-motion with-framer-motion-app +pnpm create next-app --example with-framer-motion with-framer-motion-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-geist-ui/README.md b/examples/with-geist-ui/README.md index bf3f9a00e04c4..bb0808267fa08 100644 --- a/examples/with-geist-ui/README.md +++ b/examples/with-geist-ui/README.md @@ -15,7 +15,7 @@ npx create-next-app --example with-geist-ui with-geist-ui-app # or yarn create next-app --example with-geist-ui with-geist-ui-app # or -pnpm create next-app -- --example with-geist-ui with-geist-ui-app +pnpm create next-app --example with-geist-ui with-geist-ui-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-goober/README.md b/examples/with-goober/README.md index e7f7bdfbff9a9..216d8288aa914 100644 --- a/examples/with-goober/README.md +++ b/examples/with-goober/README.md @@ -23,7 +23,7 @@ npx create-next-app --example with-goober with-goober-app # or yarn create next-app --example with-goober with-goober-app # or -pnpm create next-app -- --example with-goober with-goober-app +pnpm create next-app --example with-goober with-goober-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-google-analytics-amp/README.md b/examples/with-google-analytics-amp/README.md index c1eb1d58544df..0e7d442e17751 100644 --- a/examples/with-google-analytics-amp/README.md +++ b/examples/with-google-analytics-amp/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-google-analytics-amp with-google-analytics-am # or yarn create next-app --example with-google-analytics-amp with-google-analytics-amp-app # or -pnpm create next-app -- --example with-google-analytics-amp with-google-analytics-amp-app +pnpm create next-app --example with-google-analytics-amp with-google-analytics-amp-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-google-analytics/README.md b/examples/with-google-analytics/README.md index 8c43f98b2cc0e..1e2a7932e26ae 100644 --- a/examples/with-google-analytics/README.md +++ b/examples/with-google-analytics/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-google-analytics with-google-analytics-app # or yarn create next-app --example with-google-analytics with-google-analytics-app # or -pnpm create next-app -- --example with-google-analytics with-google-analytics-app +pnpm create next-app --example with-google-analytics with-google-analytics-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-google-tag-manager/README.md b/examples/with-google-tag-manager/README.md index da69e2ff37b92..0ed2f923d31d6 100644 --- a/examples/with-google-tag-manager/README.md +++ b/examples/with-google-tag-manager/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-google-tag-manager with-google-tag-manager-ap # or yarn create next-app --example with-google-tag-manager with-google-tag-manager-app # or -pnpm create next-app -- --example with-google-tag-manager with-google-tag-manager-app +pnpm create next-app --example with-google-tag-manager with-google-tag-manager-app ``` Next, copy the `.env.local.example` file in this directory to `.env.local` (which will be ignored by Git): diff --git a/examples/with-graphql-gateway/README.md b/examples/with-graphql-gateway/README.md index 2e12202b28c0c..537b29360dc26 100644 --- a/examples/with-graphql-gateway/README.md +++ b/examples/with-graphql-gateway/README.md @@ -57,5 +57,5 @@ npx create-next-app --example with-graphql-gateway with-graphql-gateway-app # or yarn create next-app --example with-graphql-gateway with-graphql-gateway-app # or -pnpm create next-app -- --example with-graphql-gateway with-graphql-gateway-app +pnpm create next-app --example with-graphql-gateway with-graphql-gateway-app ``` diff --git a/examples/with-graphql-hooks/README.md b/examples/with-graphql-hooks/README.md index 44fc1c971003e..988d5b3a34b1d 100644 --- a/examples/with-graphql-hooks/README.md +++ b/examples/with-graphql-hooks/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-graphql-hooks with-graphql-hooks-app # or yarn create next-app --example with-graphql-hooks with-graphql-hooks-app # or -pnpm create next-app -- --example with-graphql-hooks with-graphql-hooks-app +pnpm create next-app --example with-graphql-hooks with-graphql-hooks-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-graphql-react/README.md b/examples/with-graphql-react/README.md index 2583970128693..08f28ae717f9a 100644 --- a/examples/with-graphql-react/README.md +++ b/examples/with-graphql-react/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-graphql-react with-graphql-react-app # or yarn create next-app --example with-graphql-react with-graphql-react-app # or -pnpm create next-app -- --example with-graphql-react with-graphql-react-app +pnpm create next-app --example with-graphql-react with-graphql-react-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-grommet/README.md b/examples/with-grommet/README.md index a83950ab2c026..34cb5554bbdc5 100644 --- a/examples/with-grommet/README.md +++ b/examples/with-grommet/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-grommet with-grommet-app # or yarn create next-app --example with-grommet with-grommet-app # or -pnpm create next-app -- --example with-grommet with-grommet-app +pnpm create next-app --example with-grommet with-grommet-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-gsap/README.md b/examples/with-gsap/README.md index 4693c2d27ad9a..8e24d6564d6b2 100644 --- a/examples/with-gsap/README.md +++ b/examples/with-gsap/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-gsap with-gsap-app # or yarn create next-app --example with-gsap with-gsap-app # or -pnpm create next-app -- --example with-gsap with-gsap-app +pnpm create next-app --example with-gsap with-gsap-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-hls-js/README.md b/examples/with-hls-js/README.md index e5c531e0c2390..86648f74ee172 100644 --- a/examples/with-hls-js/README.md +++ b/examples/with-hls-js/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-hls-js with-hls-js-app # or yarn create next-app --example with-hls-js with-hls-js-app # or -pnpm create next-app -- --example with-hls-js with-hls-js-app +pnpm create next-app --example with-hls-js with-hls-js-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-http2/README.md b/examples/with-http2/README.md index a58252020a43e..0138efcc37126 100644 --- a/examples/with-http2/README.md +++ b/examples/with-http2/README.md @@ -11,7 +11,7 @@ npx create-next-app --example with-http2 with-http2-app # or yarn create next-app --example with-http2 with-http2-app # or -pnpm create next-app -- --example with-http2 with-http2-app +pnpm create next-app --example with-http2 with-http2-app ``` Create the public and private keys: diff --git a/examples/with-i18n-next-intl/README.md b/examples/with-i18n-next-intl/README.md index ac6cd56cda6f0..b441bf3352b68 100644 --- a/examples/with-i18n-next-intl/README.md +++ b/examples/with-i18n-next-intl/README.md @@ -25,7 +25,7 @@ npx create-next-app --example with-i18n-next-intl # or yarn create next-app --example with-i18n-next-intl # or -pnpm create next-app -- --example with-i18n-next-intl +pnpm create next-app --example with-i18n-next-intl ``` Deploy it to the cloud with [Vercel](https://vercel.com/import?filter=next.js&utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-i18n-rosetta/README.md b/examples/with-i18n-rosetta/README.md index 6a5c0f3101e29..6fd56a0372712 100644 --- a/examples/with-i18n-rosetta/README.md +++ b/examples/with-i18n-rosetta/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-i18n-rosetta with-i18n-rosetta-app # or yarn create next-app --example with-i18n-rosetta with-i18n-rosetta-app # or -pnpm create next-app -- --example with-i18n-rosetta with-i18n-rosetta-app +pnpm create next-app --example with-i18n-rosetta with-i18n-rosetta-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-ionic-typescript/README.md b/examples/with-ionic-typescript/README.md index fd417d39dd8c8..d2cb2e8742514 100644 --- a/examples/with-ionic-typescript/README.md +++ b/examples/with-ionic-typescript/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-ionic-typescript with-ionic-typescript-app # or yarn create next-app --example with-ionic-typescript with-ionic-typescript-app # or -pnpm create next-app -- --example with-ionic-typescript with-ionic-typescript-app +pnpm create next-app --example with-ionic-typescript with-ionic-typescript-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-iron-session/README.md b/examples/with-iron-session/README.md index f7b62698386f8..8d88fb990a569 100644 --- a/examples/with-iron-session/README.md +++ b/examples/with-iron-session/README.md @@ -36,7 +36,7 @@ npx create-next-app --example with-iron-session with-iron-session-app # or yarn create next-app --example with-iron-session with-iron-session-app # or -pnpm create next-app -- --example with-iron-session with-iron-session-app +pnpm create next-app --example with-iron-session with-iron-session-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-jest-babel/README.md b/examples/with-jest-babel/README.md index f745b0fe5abcf..66fe3396a847f 100644 --- a/examples/with-jest-babel/README.md +++ b/examples/with-jest-babel/README.md @@ -15,7 +15,7 @@ npx create-next-app --example with-jest-babel with-jest-babel-app # or yarn create next-app --example with-jest-babel with-jest-babel-app # or -pnpm create next-app -- --example with-jest-babel with-jest-babel-app +pnpm create next-app --example with-jest-babel with-jest-babel-app ``` ## Run Jest Tests diff --git a/examples/with-jest/README.md b/examples/with-jest/README.md index 62981938146f8..4aee80ff31c36 100644 --- a/examples/with-jest/README.md +++ b/examples/with-jest/README.md @@ -15,7 +15,7 @@ npx create-next-app --example with-jest with-jest-app # or yarn create next-app --example with-jest with-jest-app # or -pnpm create next-app -- --example with-jest with-jest-app +pnpm create next-app --example with-jest with-jest-app ``` ## Run Jest Tests diff --git a/examples/with-joi/README.md b/examples/with-joi/README.md index f3b733b6287d8..d27e04f522bcc 100644 --- a/examples/with-joi/README.md +++ b/examples/with-joi/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-joi with-joi-app # or yarn create next-app --example with-joi with-joi-app # or -pnpm create next-app -- --example with-joi with-joi-app +pnpm create next-app --example with-joi with-joi-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-jotai/README.md b/examples/with-jotai/README.md index fbdaa20e33ea8..573aa4c051826 100644 --- a/examples/with-jotai/README.md +++ b/examples/with-jotai/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-jotai with-jotai-app # or yarn create next-app --example with-jotai with-jotai-app # or -pnpm create next-app -- --example with-jotai with-jotai-app +pnpm create next-app --example with-jotai with-jotai-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-kea/README.md b/examples/with-kea/README.md index 638a6d88b0da8..845612bce3850 100644 --- a/examples/with-kea/README.md +++ b/examples/with-kea/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-kea with-kea-app # or yarn create next-app --example with-kea with-kea-app # or -pnpm create next-app -- --example with-kea with-kea-app +pnpm create next-app --example with-kea with-kea-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-knex/README.md b/examples/with-knex/README.md index 21190cb344679..87736f4c973b1 100644 --- a/examples/with-knex/README.md +++ b/examples/with-knex/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-knex with-knex-app # or yarn create next-app --example with-knex with-knex-app # or -pnpm create next-app -- --example with-knex with-knex-app +pnpm create next-app --example with-knex with-knex-app ``` ## Configuration diff --git a/examples/with-linaria/README.md b/examples/with-linaria/README.md index b7ddaf3bab030..88a107ee6c797 100644 --- a/examples/with-linaria/README.md +++ b/examples/with-linaria/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-linaria with-linaria-app # or yarn create next-app --example with-linaria with-linaria-app # or -pnpm create next-app -- --example with-linaria with-linaria-app +pnpm create next-app --example with-linaria with-linaria-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-lingui/README.md b/examples/with-lingui/README.md index 374f413f1f782..4e823f235bbbb 100644 --- a/examples/with-lingui/README.md +++ b/examples/with-lingui/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-lingui with-lingui-app # or yarn create next-app --example with-lingui with-lingui-app # or -pnpm create next-app -- --example with-lingui with-lingui-app +pnpm create next-app --example with-lingui with-lingui-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-loading/README.md b/examples/with-loading/README.md index ac110a8f6b16d..84f3226f9a287 100644 --- a/examples/with-loading/README.md +++ b/examples/with-loading/README.md @@ -25,7 +25,7 @@ npx create-next-app --example with-loading with-loading-app # or yarn create next-app --example with-loading with-loading-app # or -pnpm create next-app -- --example with-loading with-loading-app +pnpm create next-app --example with-loading with-loading-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-magic/README.md b/examples/with-magic/README.md index 6a6909b7edfee..08ec102ff76f7 100644 --- a/examples/with-magic/README.md +++ b/examples/with-magic/README.md @@ -23,7 +23,7 @@ npx create-next-app --example with-magic with-magic-app # or yarn create next-app --example with-magic with-magic-app # or -pnpm create next-app -- --example with-magic with-magic-app +pnpm create next-app --example with-magic with-magic-app ``` ## Configuration diff --git a/examples/with-mantine/README.md b/examples/with-mantine/README.md index 4ddfa536344e8..beca3662a4145 100644 --- a/examples/with-mantine/README.md +++ b/examples/with-mantine/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-mantine with-mantine-app # or yarn create next-app --example with-mantine with-mantine-app # or -pnpm create next-app -- --example with-mantine with-mantine-app +pnpm create next-app --example with-mantine with-mantine-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-mdbreact/README.md b/examples/with-mdbreact/README.md index ea8a034c366a7..f126206b71d2e 100644 --- a/examples/with-mdbreact/README.md +++ b/examples/with-mdbreact/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-mdbreact with-mdbreact-app # or yarn create next-app --example with-mdbreact with-mdbreact-app # or -pnpm create next-app -- --example with-mdbreact with-mdbreact-app +pnpm create next-app --example with-mdbreact with-mdbreact-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-mdx-remote/README.md b/examples/with-mdx-remote/README.md index f23c64c24131c..c7c4ce892dafb 100644 --- a/examples/with-mdx-remote/README.md +++ b/examples/with-mdx-remote/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-mdx-remote with-mdx-remote-app # or yarn create next-app --example with-mdx-remote with-mdx-remote-app # or -pnpm create next-app -- --example with-mdx-remote with-mdx-remote-app +pnpm create next-app --example with-mdx-remote with-mdx-remote-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-mdx/README.md b/examples/with-mdx/README.md index 415ec0d08c903..bc10083c597c1 100644 --- a/examples/with-mdx/README.md +++ b/examples/with-mdx/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-mdx with-mdx-app # or yarn create next-app --example with-mdx with-mdx-app # or -pnpm create next-app -- --example with-mdx with-mdx-app +pnpm create next-app --example with-mdx with-mdx-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-mobx-react-lite/README.md b/examples/with-mobx-react-lite/README.md index bf456caab3faa..337349f87e659 100644 --- a/examples/with-mobx-react-lite/README.md +++ b/examples/with-mobx-react-lite/README.md @@ -31,7 +31,7 @@ npx create-next-app --example with-mobx-react-lite with-mobx-react-lite-app # or yarn create next-app --example with-mobx-react-lite with-mobx-react-lite-app # or -pnpm create next-app -- --example with-mobx-react-lite with-mobx-react-lite-app +pnpm create next-app --example with-mobx-react-lite with-mobx-react-lite-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-mobx-state-tree-typescript/README.md b/examples/with-mobx-state-tree-typescript/README.md index 39213759268bf..59dd1ebda9600 100644 --- a/examples/with-mobx-state-tree-typescript/README.md +++ b/examples/with-mobx-state-tree-typescript/README.md @@ -25,7 +25,7 @@ npx create-next-app --example with-mobx-state-tree-typescript with-mobx-state-tr # or yarn create next-app --example with-mobx-state-tree-typescript with-mobx-state-tree-typescript-app # or -pnpm create next-app -- --example with-mobx-state-tree-typescript with-mobx-state-tree-typescript-app +pnpm create next-app --example with-mobx-state-tree-typescript with-mobx-state-tree-typescript-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-mobx-state-tree/README.md b/examples/with-mobx-state-tree/README.md index e3f154f034e3d..978ec9ec135c0 100644 --- a/examples/with-mobx-state-tree/README.md +++ b/examples/with-mobx-state-tree/README.md @@ -25,7 +25,7 @@ npx create-next-app --example with-mobx-state-tree with-mobx-state-tree-app # or yarn create next-app --example with-mobx-state-tree with-mobx-state-tree-app # or -pnpm create next-app -- --example with-mobx-state-tree with-mobx-state-tree-app +pnpm create next-app --example with-mobx-state-tree with-mobx-state-tree-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-mobx/README.md b/examples/with-mobx/README.md index bd28da19fd7e7..1bd19f5ad7e39 100644 --- a/examples/with-mobx/README.md +++ b/examples/with-mobx/README.md @@ -25,7 +25,7 @@ npx create-next-app --example with-mobx with-mobx-app # or yarn create next-app --example with-mobx with-mobx-app # or -pnpm create next-app -- --example with-mobx with-mobx-app +pnpm create next-app --example with-mobx with-mobx-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-mocha/README.md b/examples/with-mocha/README.md index e37e2a1f5451e..af085d2ffc7df 100644 --- a/examples/with-mocha/README.md +++ b/examples/with-mocha/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-mocha with-mocha-app # or yarn create next-app --example with-mocha with-mocha-app # or -pnpm create next-app -- --example with-mocha with-mocha-app +pnpm create next-app --example with-mocha with-mocha-app ``` ## Run Mocha tests diff --git a/examples/with-mongodb-mongoose/README.md b/examples/with-mongodb-mongoose/README.md index 20aaa77f317bf..5fbd4c6f96cfb 100644 --- a/examples/with-mongodb-mongoose/README.md +++ b/examples/with-mongodb-mongoose/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-mongodb-mongoose with-mongodb-mongoose-app # or yarn create next-app --example with-mongodb-mongoose with-mongodb-mongoose-app # or -pnpm create next-app -- --example with-mongodb-mongoose with-mongodb-mongoose-app +pnpm create next-app --example with-mongodb-mongoose with-mongodb-mongoose-app ``` ## Configuration diff --git a/examples/with-mongodb/README.md b/examples/with-mongodb/README.md index 870958f0dad89..383d9bda102ed 100644 --- a/examples/with-mongodb/README.md +++ b/examples/with-mongodb/README.md @@ -22,7 +22,7 @@ npx create-next-app --example with-mongodb with-mongodb-app # or yarn create next-app --example with-mongodb with-mongodb-app # or -pnpm create next-app -- --example with-mongodb with-mongodb-app +pnpm create next-app --example with-mongodb with-mongodb-app ``` ## Configuration diff --git a/examples/with-msw/README.md b/examples/with-msw/README.md index 0c37e1bb7607e..82dd3b33c0c50 100644 --- a/examples/with-msw/README.md +++ b/examples/with-msw/README.md @@ -25,7 +25,7 @@ npx create-next-app --example with-msw with-msw-app # or yarn create next-app --example with-msw with-msw-app # or -pnpm create next-app -- --example with-msw with-msw-app +pnpm create next-app --example with-msw with-msw-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-mux-video/README.md b/examples/with-mux-video/README.md index 4115089c6bc6b..ce222df326250 100644 --- a/examples/with-mux-video/README.md +++ b/examples/with-mux-video/README.md @@ -23,7 +23,7 @@ npx create-next-app --example with-mux-video with-mux-video-app # or yarn create next-app --example with-mux-video with-mux-video-app # or -pnpm create next-app -- --example with-mux-video with-mux-video-app +pnpm create next-app --example with-mux-video with-mux-video-app ``` ## Note diff --git a/examples/with-mysql/README.md b/examples/with-mysql/README.md index 85a8996c0e288..3ab6506a1e84a 100644 --- a/examples/with-mysql/README.md +++ b/examples/with-mysql/README.md @@ -35,7 +35,7 @@ npx create-next-app --example with-mysql nextjs-mysql # or yarn create next-app --example with-mysql nextjs-mysql # or -pnpm create next-app -- --example with-mysql nextjs-mysql +pnpm create next-app --example with-mysql nextjs-mysql ``` Next, you'll need to create a database username and password through the CLI to connect to your application. If you'd prefer to use the dashboard for this step, you can find those instructions in the [Connection Strings documentation](https://docs.planetscale.com/concepts/connection-strings#creating-a-password) and then come back here to finish setup. diff --git a/examples/with-neo4j/README.md b/examples/with-neo4j/README.md index 17c07999e218d..8c6a325240cec 100644 --- a/examples/with-neo4j/README.md +++ b/examples/with-neo4j/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-neo4j with-neo4j-app # or yarn create next-app --example with-neo4j with-neo4j-app # or -pnpm create next-app -- --example with-neo4j with-neo4j-app +pnpm create next-app --example with-neo4j with-neo4j-app ``` ## Configuration diff --git a/examples/with-netlify-cms/README.md b/examples/with-netlify-cms/README.md index 10ba9c5759b76..d55a18e1149b3 100644 --- a/examples/with-netlify-cms/README.md +++ b/examples/with-netlify-cms/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-netlify-cms with-netlify-cms-app # or yarn create next-app --example with-netlify-cms with-netlify-cms-app # or -pnpm create next-app -- --example with-netlify-cms with-netlify-cms-app +pnpm create next-app --example with-netlify-cms with-netlify-cms-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-next-css/README.md b/examples/with-next-css/README.md index 6ca634fa0e8e8..0fc9b092325c8 100644 --- a/examples/with-next-css/README.md +++ b/examples/with-next-css/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-next-css with-next-css-app # or yarn create next-app --example with-next-css with-next-css-app # or -pnpm create next-app -- --example with-next-css with-next-css-app +pnpm create next-app --example with-next-css with-next-css-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-next-offline/README.md b/examples/with-next-offline/README.md index 25648752f93e8..7cbd7e2627016 100644 --- a/examples/with-next-offline/README.md +++ b/examples/with-next-offline/README.md @@ -11,7 +11,7 @@ npx create-next-app --example with-next-offline with-next-offline-app # or yarn create next-app --example with-next-offline with-next-offline-app # or -pnpm create next-app -- --example with-next-offline with-next-offline-app +pnpm create next-app --example with-next-offline with-next-offline-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-next-page-transitions/README.md b/examples/with-next-page-transitions/README.md index 5dc8382c372b2..d68eea1cfc241 100644 --- a/examples/with-next-page-transitions/README.md +++ b/examples/with-next-page-transitions/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-next-page-transitions with-next-page-transiti # or yarn create next-app --example with-next-page-transitions with-next-page-transitions-app # or -pnpm create next-app -- --example with-next-page-transitions with-next-page-transitions-app +pnpm create next-app --example with-next-page-transitions with-next-page-transitions-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-next-sass/README.md b/examples/with-next-sass/README.md index fd63e161c9f2f..896b57b280402 100644 --- a/examples/with-next-sass/README.md +++ b/examples/with-next-sass/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-next-sass with-next-sass-app # or yarn create next-app --example with-next-sass with-next-sass-app # or -pnpm create next-app -- --example with-next-sass with-next-sass-app +pnpm create next-app --example with-next-sass with-next-sass-app ``` Run production build with: diff --git a/examples/with-next-seo/README.md b/examples/with-next-seo/README.md index abb77eb7452cb..08a62e3b2f0a3 100644 --- a/examples/with-next-seo/README.md +++ b/examples/with-next-seo/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-next-seo next-seo-app # or yarn create next-app --example with-next-seo next-seo-app # or -pnpm create next-app -- --example with-next-seo next-seo-app +pnpm create next-app --example with-next-seo next-seo-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-next-sitemap/README.md b/examples/with-next-sitemap/README.md index f4d85df8281b1..16df54281ac4a 100644 --- a/examples/with-next-sitemap/README.md +++ b/examples/with-next-sitemap/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-next-sitemap with-next-sitemap-app # or yarn create next-app --example with-next-sitemap with-next-sitemap-app # or -pnpm create next-app -- --example with-next-sitemap with-next-sitemap-app +pnpm create next-app --example with-next-sitemap with-next-sitemap-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-next-translate/README.md b/examples/with-next-translate/README.md index 4ac8bd6b4f803..88c282374e411 100644 --- a/examples/with-next-translate/README.md +++ b/examples/with-next-translate/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-next-translate with-next-translate-app # or yarn create next-app --example with-next-translate with-next-translate-app # or -pnpm create next-app -- --example with-next-translate with-next-translate-app +pnpm create next-app --example with-next-translate with-next-translate-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-nhost-auth-realtime-graphql/README.md b/examples/with-nhost-auth-realtime-graphql/README.md index 804101d8453a6..2675606f60b69 100644 --- a/examples/with-nhost-auth-realtime-graphql/README.md +++ b/examples/with-nhost-auth-realtime-graphql/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-nhost-auth-realtime-graphql nhost-app # or yarn create next-app --example with-nhost-auth-realtime-graphql nhost-app # or -pnpm create next-app -- --example with-nhost-auth-realtime-graphql nhost-app +pnpm create next-app --example with-nhost-auth-realtime-graphql nhost-app ``` ## Configuration diff --git a/examples/with-orbit-components/README.md b/examples/with-orbit-components/README.md index 73238e55dce50..518fd748a237e 100644 --- a/examples/with-orbit-components/README.md +++ b/examples/with-orbit-components/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-orbit-components with-orbit-components-app # or yarn create next-app --example with-orbit-components with-orbit-components-app # or -pnpm create next-app -- --example with-orbit-components with-orbit-components-app +pnpm create next-app --example with-orbit-components with-orbit-components-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-overmind/README.md b/examples/with-overmind/README.md index 0ba8926bd7e09..a4dffd9735ef8 100644 --- a/examples/with-overmind/README.md +++ b/examples/with-overmind/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-overmind with-overmind-app # or yarn create next-app --example with-overmind with-overmind-app # or -pnpm create next-app -- --example with-overmind with-overmind-app +pnpm create next-app --example with-overmind with-overmind-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-passport-and-next-connect/README.md b/examples/with-passport-and-next-connect/README.md index 710866dff6ac8..7f05ef6b0cb64 100644 --- a/examples/with-passport-and-next-connect/README.md +++ b/examples/with-passport-and-next-connect/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-passport-and-next-connect with-passport-and-n # or yarn create next-app --example with-passport-and-next-connect with-passport-and-next-connect-app # or -pnpm create next-app -- --example with-passport-and-next-connect with-passport-and-next-connect-app +pnpm create next-app --example with-passport-and-next-connect with-passport-and-next-connect-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-passport/README.md b/examples/with-passport/README.md index f719bb65aa353..57210fb1e7c63 100644 --- a/examples/with-passport/README.md +++ b/examples/with-passport/README.md @@ -23,7 +23,7 @@ npx create-next-app --example with-passport with-passport-app # or yarn create next-app --example with-passport with-passport-app # or -pnpm create next-app -- --example with-passport with-passport-app +pnpm create next-app --example with-passport with-passport-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-paste-typescript/README.md b/examples/with-paste-typescript/README.md index dbaa1c1e3856a..2d13a518bef73 100644 --- a/examples/with-paste-typescript/README.md +++ b/examples/with-paste-typescript/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-paste-typescript with-paste-typescript-app # or yarn create next-app --example with-paste-typescript with-paste-typescript-app # or -pnpm create next-app -- --example with-paste-typescript with-paste-typescript-app +pnpm create next-app --example with-paste-typescript with-paste-typescript-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-patternfly/README.md b/examples/with-patternfly/README.md index 0b47c4b7c218e..074c6d7be48dd 100644 --- a/examples/with-patternfly/README.md +++ b/examples/with-patternfly/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-patternfly with-patternfly-app # or yarn create next-app --example with-patternfly with-patternfly-app # or -pnpm create next-app -- --example with-patternfly with-patternfly-app +pnpm create next-app --example with-patternfly with-patternfly-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-plausible/README.md b/examples/with-plausible/README.md index 02475f5850a59..5bc2823e7bd52 100644 --- a/examples/with-plausible/README.md +++ b/examples/with-plausible/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-plausible with-plausible-app # or yarn create next-app --example with-plausible with-plausible-app # or -pnpm create next-app -- --example with-plausible with-plausible-app +pnpm create next-app --example with-plausible with-plausible-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-playwright/README.md b/examples/with-playwright/README.md index ee34adb06cfc4..38061d4ed9de9 100644 --- a/examples/with-playwright/README.md +++ b/examples/with-playwright/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-playwright with-playwright-app # or yarn create next-app --example with-playwright with-playwright-app # or -pnpm create next-app -- --example with-playwright with-playwright-app +pnpm create next-app --example with-playwright with-playwright-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-polyfills/README.md b/examples/with-polyfills/README.md index b003e20e42a56..17093c6fe53ba 100644 --- a/examples/with-polyfills/README.md +++ b/examples/with-polyfills/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-polyfills with-polyfills-app # or yarn create next-app --example with-polyfills with-polyfills-app # or -pnpm create next-app -- --example with-polyfills with-polyfills-app +pnpm create next-app --example with-polyfills with-polyfills-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-portals-ssr/README.md b/examples/with-portals-ssr/README.md index 645b33d3f3075..62c52dd72f8ab 100644 --- a/examples/with-portals-ssr/README.md +++ b/examples/with-portals-ssr/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-portals-ssr with-portals-ssr-app # or yarn create next-app --example with-portals-ssr with-portals-ssr-app # or -pnpm create next-app -- --example with-portals-ssr with-portals-ssr-app +pnpm create next-app --example with-portals-ssr with-portals-ssr-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-portals/README.md b/examples/with-portals/README.md index 7d3a59076eb03..a39654814201f 100644 --- a/examples/with-portals/README.md +++ b/examples/with-portals/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-portals with-portals-app # or yarn create next-app --example with-portals with-portals-app # or -pnpm create next-app -- --example with-portals with-portals-app +pnpm create next-app --example with-portals with-portals-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-prefetching/README.md b/examples/with-prefetching/README.md index 63199ccb8b1be..2762ccd8c46ef 100644 --- a/examples/with-prefetching/README.md +++ b/examples/with-prefetching/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-prefetching with-prefetching-app # or yarn create next-app --example with-prefetching with-prefetching-app # or -pnpm create next-app -- --example with-prefetching with-prefetching-app +pnpm create next-app --example with-prefetching with-prefetching-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-quill-js/README.md b/examples/with-quill-js/README.md index 24e68e437cc4f..f9fe3863f5101 100644 --- a/examples/with-quill-js/README.md +++ b/examples/with-quill-js/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-quill-js with-quill-js-app # or yarn create next-app --example with-quill-js with-quill-js-app # or -pnpm create next-app -- --example with-quill-js with-quill-js-app +pnpm create next-app --example with-quill-js with-quill-js-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-rbx-bulma-pro/README.md b/examples/with-rbx-bulma-pro/README.md index b6a7ecc5a3fee..21085649e1fe5 100644 --- a/examples/with-rbx-bulma-pro/README.md +++ b/examples/with-rbx-bulma-pro/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-rbx-bulma-pro with-rbx-bulma-pro-app # or yarn create next-app --example with-rbx-bulma-pro with-rbx-bulma-pro-app # or -pnpm create next-app -- --example with-rbx-bulma-pro with-rbx-bulma-pro-app +pnpm create next-app --example with-rbx-bulma-pro with-rbx-bulma-pro-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-bootstrap/README.md b/examples/with-react-bootstrap/README.md index a97094e55a89e..60e25ece8b7d7 100644 --- a/examples/with-react-bootstrap/README.md +++ b/examples/with-react-bootstrap/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-react-bootstrap with-react-bootstrap-app # or yarn create next-app --example with-react-bootstrap with-react-bootstrap-app # or -pnpm create next-app -- --example with-react-bootstrap with-react-bootstrap-app +pnpm create next-app --example with-react-bootstrap with-react-bootstrap-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-foundation/README.md b/examples/with-react-foundation/README.md index 8bb237434fe1e..2b1854d59619f 100644 --- a/examples/with-react-foundation/README.md +++ b/examples/with-react-foundation/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-react-foundation with-react-foundation-app # or yarn create next-app --example with-react-foundation with-react-foundation-app # or -pnpm create next-app -- --example with-react-foundation with-react-foundation-app +pnpm create next-app --example with-react-foundation with-react-foundation-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-ga/README.md b/examples/with-react-ga/README.md index b8a03f52abb8a..6c6e4a958766d 100644 --- a/examples/with-react-ga/README.md +++ b/examples/with-react-ga/README.md @@ -18,7 +18,7 @@ npx create-next-app --example with-react-ga with-react-ga-app # or yarn create next-app --example with-react-ga with-react-ga-app # or -pnpm create next-app -- --example with-react-ga with-react-ga-app +pnpm create next-app --example with-react-ga with-react-ga-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-helmet/README.md b/examples/with-react-helmet/README.md index 04e84a10e3a3d..2aed3805ee4d1 100644 --- a/examples/with-react-helmet/README.md +++ b/examples/with-react-helmet/README.md @@ -20,7 +20,7 @@ npx create-next-app --example with-react-helmet with-react-helmet-app # or yarn create next-app --example with-react-helmet with-react-helmet-app # or -pnpm create next-app -- --example with-react-helmet with-react-helmet-app +pnpm create next-app --example with-react-helmet with-react-helmet-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-hook-form/README.md b/examples/with-react-hook-form/README.md index 912ee8d17ac56..11ff43fe58cc2 100644 --- a/examples/with-react-hook-form/README.md +++ b/examples/with-react-hook-form/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-react-hook-form with-react-hook-form-app # or yarn create next-app --example with-react-hook-form with-react-hook-form-app # or -pnpm create next-app -- --example with-react-hook-form with-react-hook-form-app +pnpm create next-app --example with-react-hook-form with-react-hook-form-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-intl/README.md b/examples/with-react-intl/README.md index d73d16358bcd0..7f13354f83df4 100644 --- a/examples/with-react-intl/README.md +++ b/examples/with-react-intl/README.md @@ -11,7 +11,7 @@ npx create-next-app --example with-react-intl with-react-intl-app # or yarn create next-app --example with-react-intl with-react-intl-app # or -pnpm create next-app -- --example with-react-intl with-react-intl-app +pnpm create next-app --example with-react-intl with-react-intl-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-jss/README.md b/examples/with-react-jss/README.md index d2d5ff5ca1094..5aaf141a26b9b 100644 --- a/examples/with-react-jss/README.md +++ b/examples/with-react-jss/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-react-jss with-react-jss-app # or yarn create next-app --example with-react-jss with-react-jss-app # or -pnpm create next-app -- --example with-react-jss with-react-jss-app +pnpm create next-app --example with-react-jss with-react-jss-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-md-typescript/README.md b/examples/with-react-md-typescript/README.md index 5211a96b8f4b1..3a56889b04fba 100644 --- a/examples/with-react-md-typescript/README.md +++ b/examples/with-react-md-typescript/README.md @@ -32,7 +32,7 @@ npx create-next-app --example with-react-md-typescript with-react-md-typescript- # or yarn create next-app --example with-react-md-typescript with-react-md-typescript-app # or -pnpm create next-app -- --example with-react-md-typescript with-react-md-typescript-app +pnpm create next-app --example with-react-md-typescript with-react-md-typescript-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-md/README.md b/examples/with-react-md/README.md index 2ea1dea520e49..f4b53e29780a0 100644 --- a/examples/with-react-md/README.md +++ b/examples/with-react-md/README.md @@ -33,7 +33,7 @@ npx create-next-app --example with-react-md with-react-md-app # or yarn create next-app --example with-react-md with-react-md-app # or -pnpm create next-app -- --example with-react-md with-react-md-app +pnpm create next-app --example with-react-md with-react-md-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-multi-carousel/README.md b/examples/with-react-multi-carousel/README.md index e05f7d9de7472..32fb7dd3addf4 100644 --- a/examples/with-react-multi-carousel/README.md +++ b/examples/with-react-multi-carousel/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-react-multi-carousel with-react-multi-carouse # or yarn create next-app --example with-react-multi-carousel with-react-multi-carousel-app # or -pnpm create next-app -- --example with-react-multi-carousel with-react-multi-carousel-app +pnpm create next-app --example with-react-multi-carousel with-react-multi-carousel-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-native-web/README.md b/examples/with-react-native-web/README.md index 732af07ca7d47..8884451c61ee1 100644 --- a/examples/with-react-native-web/README.md +++ b/examples/with-react-native-web/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-react-native-web with-react-native-web-app # or yarn create next-app --example with-react-native-web with-react-native-web-app # or -pnpm create next-app -- --example with-react-native-web with-react-native-web-app +pnpm create next-app --example with-react-native-web with-react-native-web-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-react-toolbox/README.md b/examples/with-react-toolbox/README.md index 5f2ee0b00f535..21dda382c3db3 100644 --- a/examples/with-react-toolbox/README.md +++ b/examples/with-react-toolbox/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-react-toolbox with-react-toolbox-app # or yarn create next-app --example with-react-toolbox with-react-toolbox-app # or -pnpm create next-app -- --example with-react-toolbox with-react-toolbox-app +pnpm create next-app --example with-react-toolbox with-react-toolbox-app ``` Notice that `yarn toolbox` (or `npm run toolbox`) should be rerun every time the `"reactToolbox"` configuration in `package.json` is changed, in order to update `/theme.js` and `public/theme.css`. The `"reactToolbox"` configuration includes styling, and the list of react-toolbox components to include. diff --git a/examples/with-react-with-styles/README.md b/examples/with-react-with-styles/README.md index 12fdad3ac8fd2..73f095000752c 100644 --- a/examples/with-react-with-styles/README.md +++ b/examples/with-react-with-styles/README.md @@ -23,7 +23,7 @@ npx create-next-app --example with-react-with-styles with-react-with-styles-app # or yarn create next-app --example with-react-with-styles with-react-with-styles-app # or -pnpm create next-app -- --example with-react-with-styles with-react-with-styles-app +pnpm create next-app --example with-react-with-styles with-react-with-styles-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-reactstrap/README.md b/examples/with-reactstrap/README.md index 1ca46a0d82927..8af9afb86f667 100644 --- a/examples/with-reactstrap/README.md +++ b/examples/with-reactstrap/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-reactstrap with-reactstrap-app # or yarn create next-app --example with-reactstrap with-reactstrap-app # or -pnpm create next-app -- --example with-reactstrap with-reactstrap-app +pnpm create next-app --example with-reactstrap with-reactstrap-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-realm-web/README.md b/examples/with-realm-web/README.md index cd615bab1040f..a9d7268b517c8 100644 --- a/examples/with-realm-web/README.md +++ b/examples/with-realm-web/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-realm-web with-realm-web-app # or yarn create next-app --example with-realm-web with-realm-web-app # or -pnpm create next-app -- --example with-realm-web with-realm-web-app +pnpm create next-app --example with-realm-web with-realm-web-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-reason-relay/README.md b/examples/with-reason-relay/README.md index 873eff7c7fd73..3aa70cbd3445f 100644 --- a/examples/with-reason-relay/README.md +++ b/examples/with-reason-relay/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-reason-relay with-reason-relay-app # or yarn create next-app --example with-reason-relay with-reason-relay-app # or -pnpm create next-app -- --example with-reason-relay with-reason-relay-app +pnpm create next-app --example with-reason-relay with-reason-relay-app ``` Download schema introspection data from configured Relay endpoint: diff --git a/examples/with-reasonml-todo/README.md b/examples/with-reasonml-todo/README.md index 8484d4154987f..5ec6b6c6b1507 100644 --- a/examples/with-reasonml-todo/README.md +++ b/examples/with-reasonml-todo/README.md @@ -29,7 +29,7 @@ npx create-next-app --example with-reasonml-todo with-reasonml-app # or yarn create next-app --example with-reasonml-todo with-reasonml-app # or -pnpm create next-app -- --example with-reasonml-todo with-reasonml-app +pnpm create next-app --example with-reasonml-todo with-reasonml-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-reasonml/README.md b/examples/with-reasonml/README.md index d56053f7911c2..46414cc05d8bc 100644 --- a/examples/with-reasonml/README.md +++ b/examples/with-reasonml/README.md @@ -23,7 +23,7 @@ npx create-next-app --example with-reasonml with-reasonml-app # or yarn create next-app --example with-reasonml with-reasonml-app # or -pnpm create next-app -- --example with-reasonml with-reasonml-app +pnpm create next-app --example with-reasonml with-reasonml-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-rebass/README.md b/examples/with-rebass/README.md index 9dba5775a4733..9239f8f4eebbe 100644 --- a/examples/with-rebass/README.md +++ b/examples/with-rebass/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-rebass with-rebass-app # or yarn create next-app --example with-rebass with-rebass-app # or -pnpm create next-app -- --example with-rebass with-rebass-app +pnpm create next-app --example with-rebass with-rebass-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-recoil/README.md b/examples/with-recoil/README.md index a6994b9122939..4e5c848b7db30 100644 --- a/examples/with-recoil/README.md +++ b/examples/with-recoil/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-recoil with-recoil-app # or yarn create next-app --example with-recoil with-recoil-app # or -pnpm create next-app -- --example with-recoil with-recoil-app +pnpm create next-app --example with-recoil with-recoil-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-redis/README.md b/examples/with-redis/README.md index d593229a56335..29cc05a9a8d7d 100644 --- a/examples/with-redis/README.md +++ b/examples/with-redis/README.md @@ -28,7 +28,7 @@ npx create-next-app --example with-redis roadmap # or yarn create next-app --example with-redis roadmap # or -pnpm create next-app -- --example with-redis roadmap +pnpm create next-app --example with-redis roadmap ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-redux-observable/README.md b/examples/with-redux-observable/README.md index c496aa9b1261e..4e8a3e257ef22 100644 --- a/examples/with-redux-observable/README.md +++ b/examples/with-redux-observable/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-redux-observable with-redux-observable-app # or yarn create next-app --example with-redux-observable with-redux-observable-app # or -pnpm create next-app -- --example with-redux-observable with-redux-observable-app +pnpm create next-app --example with-redux-observable with-redux-observable-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-redux-persist/README.md b/examples/with-redux-persist/README.md index 19ddba890acb6..24e6e6dd4a277 100644 --- a/examples/with-redux-persist/README.md +++ b/examples/with-redux-persist/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-redux-persist with-redux-persist-app # or yarn create next-app --example with-redux-persist with-redux-persist-app # or -pnpm create next-app -- --example with-redux-persist with-redux-persist-app +pnpm create next-app --example with-redux-persist with-redux-persist-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-redux-saga/README.md b/examples/with-redux-saga/README.md index 0d1db0ca8daf3..265b77de5d427 100644 --- a/examples/with-redux-saga/README.md +++ b/examples/with-redux-saga/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-redux-saga with-redux-saga-app # or yarn create next-app --example with-redux-saga with-redux-saga-app # or -pnpm create next-app -- --example with-redux-saga with-redux-saga-app +pnpm create next-app --example with-redux-saga with-redux-saga-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-redux-thunk/README.md b/examples/with-redux-thunk/README.md index 8b52c1efabcd6..eb4d669b2dbd7 100644 --- a/examples/with-redux-thunk/README.md +++ b/examples/with-redux-thunk/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-redux-thunk with-redux-thunk-app # or yarn create next-app --example with-redux-thunk with-redux-thunk-app # or -pnpm create next-app -- --example with-redux-thunk with-redux-thunk-app +pnpm create next-app --example with-redux-thunk with-redux-thunk-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-redux-wrapper/README.md b/examples/with-redux-wrapper/README.md index 4601a5f70a84c..4c5e4e0be3973 100644 --- a/examples/with-redux-wrapper/README.md +++ b/examples/with-redux-wrapper/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-redux-wrapper with-redux-wrapper-app # or yarn create next-app --example with-redux-wrapper with-redux-wrapper-app # or -pnpm create next-app -- --example with-redux-wrapper with-redux-wrapper-app +pnpm create next-app --example with-redux-wrapper with-redux-wrapper-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-redux/README.md b/examples/with-redux/README.md index 01b723c8bfd6e..461ad96942802 100644 --- a/examples/with-redux/README.md +++ b/examples/with-redux/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-redux with-redux-app # or yarn create next-app --example with-redux with-redux-app # or -pnpm create next-app -- --example with-redux with-redux-app +pnpm create next-app --example with-redux with-redux-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-reflexjs/README.md b/examples/with-reflexjs/README.md index e175bb93c1dee..33995963cc105 100644 --- a/examples/with-reflexjs/README.md +++ b/examples/with-reflexjs/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-reflexjs with-reflexjs-app # or yarn create next-app --example with-reflexjs with-reflexjs-app # or -pnpm create next-app -- --example with-reflexjs with-reflexjs-app +pnpm create next-app --example with-reflexjs with-reflexjs-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-reflux/README.md b/examples/with-reflux/README.md index 342d2b0e4a245..48d4929836e45 100644 --- a/examples/with-reflux/README.md +++ b/examples/with-reflux/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-reflux with-reflux-app # or yarn create next-app --example with-reflux with-reflux-app # or -pnpm create next-app -- --example with-reflux with-reflux-app +pnpm create next-app --example with-reflux with-reflux-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-relay-modern/README.md b/examples/with-relay-modern/README.md index 1119bd2a61371..0dbcaa4bd67a1 100644 --- a/examples/with-relay-modern/README.md +++ b/examples/with-relay-modern/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-relay-modern with-relay-modern-app # or yarn create next-app --example with-relay-modern with-relay-modern-app # or -pnpm create next-app -- --example with-relay-modern with-relay-modern-app +pnpm create next-app --example with-relay-modern with-relay-modern-app ``` Download schema introspection data from configured Relay endpoint diff --git a/examples/with-rematch/README.md b/examples/with-rematch/README.md index 89c3c89d7f643..58e1b7106ecab 100644 --- a/examples/with-rematch/README.md +++ b/examples/with-rematch/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-rematch with-rematch-app # or yarn create next-app --example with-rematch with-rematch-app # or -pnpm create next-app -- --example with-rematch with-rematch-app +pnpm create next-app --example with-rematch with-rematch-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-route-as-modal/README.md b/examples/with-route-as-modal/README.md index 3a54c79a9e10d..ce590979e782c 100644 --- a/examples/with-route-as-modal/README.md +++ b/examples/with-route-as-modal/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-route-as-modal with-route-as-modal-app # or yarn create next-app --example with-route-as-modal with-route-as-modal-app # or -pnpm create next-app -- --example with-route-as-modal with-route-as-modal-app +pnpm create next-app --example with-route-as-modal with-route-as-modal-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-segment-analytics/README.md b/examples/with-segment-analytics/README.md index 7d12fea08cda9..ec7cce5d03557 100644 --- a/examples/with-segment-analytics/README.md +++ b/examples/with-segment-analytics/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-segment-analytics with-segment-analytics-app # or yarn create next-app --example with-segment-analytics with-segment-analytics-app # or -pnpm create next-app -- --example with-segment-analytics with-segment-analytics-app +pnpm create next-app --example with-segment-analytics with-segment-analytics-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-semantic-ui/README.md b/examples/with-semantic-ui/README.md index a56bb1f2cd67c..4b8596971a52c 100644 --- a/examples/with-semantic-ui/README.md +++ b/examples/with-semantic-ui/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-semantic-ui with-semantic-ui-app # or yarn create next-app --example with-semantic-ui with-semantic-ui-app # or -pnpm create next-app -- --example with-semantic-ui with-semantic-ui-app +pnpm create next-app --example with-semantic-ui with-semantic-ui-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-sentry/README.md b/examples/with-sentry/README.md index 21b81370a9eed..894cee06f94a3 100644 --- a/examples/with-sentry/README.md +++ b/examples/with-sentry/README.md @@ -40,7 +40,7 @@ npx create-next-app --example with-sentry nextjs-sentry-example # or yarn create next-app --example with-sentry nextjs-sentry-example # or -pnpm create next-app -- --example with-sentry nextjs-sentry-example +pnpm create next-app --example with-sentry nextjs-sentry-example ``` Next, run [`sentry-wizard`](https://docs.sentry.io/platforms/javascript/guides/nextjs/#configure), which will create and populate the settings files needed by `@sentry/nextjs` to initialize the SDK and upload source maps to Sentry: diff --git a/examples/with-service-worker/README.md b/examples/with-service-worker/README.md index 26e62b6ae1191..6eaddd5261abd 100644 --- a/examples/with-service-worker/README.md +++ b/examples/with-service-worker/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-service-worker with-service-worker-app # or yarn create next-app --example with-service-worker with-service-worker-app # or -pnpm create next-app -- --example with-service-worker with-service-worker-app +pnpm create next-app --example with-service-worker with-service-worker-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-shallow-routing/README.md b/examples/with-shallow-routing/README.md index 00a94937c4a0f..c85f823b9af0f 100644 --- a/examples/with-shallow-routing/README.md +++ b/examples/with-shallow-routing/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-shallow-routing with-shallow-routing-app # or yarn create next-app --example with-shallow-routing with-shallow-routing-app # or -pnpm create next-app -- --example with-shallow-routing with-shallow-routing-app +pnpm create next-app --example with-shallow-routing with-shallow-routing-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-sitemap/README.md b/examples/with-sitemap/README.md index c7509a5efd2a6..5e242800e3003 100644 --- a/examples/with-sitemap/README.md +++ b/examples/with-sitemap/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-sitemap with-sitemap-app # or yarn create next-app --example with-sitemap with-sitemap-app # or -pnpm create next-app -- --example with-sitemap with-sitemap-app +pnpm create next-app --example with-sitemap with-sitemap-app ``` Your app should be up and running on [http://localhost:3000](http://localhost:3000) and the sitemap should now be available in [http://localhost:3000/sitemap.xml](http://localhost:3000/sitemap.xml)! If it doesn't work, post on [GitHub discussions](https://github.com/vercel/next.js/discussions). diff --git a/examples/with-skynexui-components/README.md b/examples/with-skynexui-components/README.md index 3df3d619f2421..a63bb50756c1d 100644 --- a/examples/with-skynexui-components/README.md +++ b/examples/with-skynexui-components/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-skynexui-components with-skynexui-components- # or yarn create next-app --example with-skynexui-components with-skynexui-components-app # or -pnpm create next-app -- --example with-skynexui-components with-skynexui-components-app +pnpm create next-app --example with-skynexui-components with-skynexui-components-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-slate/README.md b/examples/with-slate/README.md index 220f05e688103..5cbb68b660148 100644 --- a/examples/with-slate/README.md +++ b/examples/with-slate/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-slate with-slate-app # or yarn create next-app --example with-slate with-slate-app # or -pnpm create next-app -- --example with-slate with-slate-app +pnpm create next-app --example with-slate with-slate-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-static-export/README.md b/examples/with-static-export/README.md index cf80a0b033a0a..a9046276f61d6 100644 --- a/examples/with-static-export/README.md +++ b/examples/with-static-export/README.md @@ -19,5 +19,5 @@ npx create-next-app --example with-static-export with-static-export-app # or yarn create next-app --example with-static-export with-static-export-app # or -pnpm create next-app -- --example with-static-export with-static-export-app +pnpm create next-app --example with-static-export with-static-export-app ``` diff --git a/examples/with-stencil/README.md b/examples/with-stencil/README.md index 85b623ede1ab3..0adda74ae42c3 100644 --- a/examples/with-stencil/README.md +++ b/examples/with-stencil/README.md @@ -15,7 +15,7 @@ npx create-next-app --example with-stencil with-stencil-app # or yarn create next-app --example with-stencil with-stencil-app # or -pnpm create next-app -- --example with-stencil with-stencil-app +pnpm create next-app --example with-stencil with-stencil-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-stitches/README.md b/examples/with-stitches/README.md index 4bd22fd070a33..59e850aa1f438 100644 --- a/examples/with-stitches/README.md +++ b/examples/with-stitches/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-stitches with-stitches-app # or yarn create next-app --example with-stitches with-stitches-app # or -pnpm create next-app -- --example with-stitches with-stitches-app +pnpm create next-app --example with-stitches with-stitches-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-stomp/README.md b/examples/with-stomp/README.md index 3853b2b54c7ec..1439771e2fb9c 100644 --- a/examples/with-stomp/README.md +++ b/examples/with-stomp/README.md @@ -15,7 +15,7 @@ npx create-next-app --example with-stomp with-stomp-app # or yarn create next-app --example with-stomp with-stomp-app # or -pnpm create next-app -- --example with-stomp with-stomp-app +pnpm create next-app --example with-stomp with-stomp-app ``` You'll need to provide the STOMP url of your server before running the app. Open [`.env`](.env) and update the `NEXT_PUBLIC_STOMP_SERVER` environment variable. diff --git a/examples/with-storybook-styled-jsx-scss/README.md b/examples/with-storybook-styled-jsx-scss/README.md index 8937722f1d2fd..2062a43ba27c0 100644 --- a/examples/with-storybook-styled-jsx-scss/README.md +++ b/examples/with-storybook-styled-jsx-scss/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-storybook-styled-jsx-scss with-storybook-styl # or yarn create next-app --example with-storybook-styled-jsx-scss with-storybook-styled-jsx-scss-app # or -pnpm create next-app -- --example with-storybook-styled-jsx-scss with-storybook-styled-jsx-scss-app +pnpm create next-app --example with-storybook-styled-jsx-scss with-storybook-styled-jsx-scss-app ``` ### Run Storybook diff --git a/examples/with-storybook/README.md b/examples/with-storybook/README.md index 7341a70e6102f..ee8f031b20e3e 100644 --- a/examples/with-storybook/README.md +++ b/examples/with-storybook/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-storybook with-storybook-app # or yarn create next-app --example with-storybook with-storybook-app # or -pnpm create next-app -- --example with-storybook with-storybook-app +pnpm create next-app --example with-storybook with-storybook-app ``` ### Run Storybook diff --git a/examples/with-strict-csp/README.md b/examples/with-strict-csp/README.md index d188d45bc4f63..6dcd6b2fe6312 100644 --- a/examples/with-strict-csp/README.md +++ b/examples/with-strict-csp/README.md @@ -20,7 +20,7 @@ npx create-next-app --example with-strict-csp with-strict-csp-app # or yarn create next-app --example with-strict-csp with-strict-csp-app # or -pnpm create next-app -- --example with-strict-csp with-strict-csp-app +pnpm create next-app --example with-strict-csp with-strict-csp-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-stripe-typescript/README.md b/examples/with-stripe-typescript/README.md index 16ce94f65677a..22f1ebbb2da33 100644 --- a/examples/with-stripe-typescript/README.md +++ b/examples/with-stripe-typescript/README.md @@ -70,7 +70,7 @@ npx create-next-app --example with-stripe-typescript with-stripe-typescript-app # or yarn create next-app --example with-stripe-typescript with-stripe-typescript-app # or -pnpm create next-app -- --example with-stripe-typescript with-stripe-typescript-app +pnpm create next-app --example with-stripe-typescript with-stripe-typescript-app ``` ### Required configuration diff --git a/examples/with-styled-components-babel/README.md b/examples/with-styled-components-babel/README.md index eca08e3095bb1..461d9f8b2aca0 100644 --- a/examples/with-styled-components-babel/README.md +++ b/examples/with-styled-components-babel/README.md @@ -25,7 +25,7 @@ npx create-next-app --example with-styled-components-babel with-styled-component # or yarn create next-app --example with-styled-components-babel with-styled-components-babel-app # or -pnpm create next-app -- --example with-styled-components-babel with-styled-components-babel-app +pnpm create next-app --example with-styled-components-babel with-styled-components-babel-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-styled-components-rtl/README.md b/examples/with-styled-components-rtl/README.md index 033d3416de05d..73399c1e7116d 100644 --- a/examples/with-styled-components-rtl/README.md +++ b/examples/with-styled-components-rtl/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-styled-components-rtl with-styled-components- # or yarn create next-app --example with-styled-components-rtl with-styled-components-rtl-app # or -pnpm create next-app -- --example with-styled-components-rtl with-styled-components-rtl-app +pnpm create next-app --example with-styled-components-rtl with-styled-components-rtl-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-styled-components/README.md b/examples/with-styled-components/README.md index 7b1d6b154d53f..453e57be63bc3 100644 --- a/examples/with-styled-components/README.md +++ b/examples/with-styled-components/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-styled-components with-styled-components-app # or yarn create next-app --example with-styled-components with-styled-components-app # or -pnpm create next-app -- --example with-styled-components with-styled-components-app +pnpm create next-app --example with-styled-components with-styled-components-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-styled-jsx-plugins/README.md b/examples/with-styled-jsx-plugins/README.md index 2518ca63665d1..880a248e7cb9f 100644 --- a/examples/with-styled-jsx-plugins/README.md +++ b/examples/with-styled-jsx-plugins/README.md @@ -23,7 +23,7 @@ npx create-next-app --example with-styled-jsx-plugins with-styled-jsx-plugins-ap # or yarn create next-app --example with-styled-jsx-plugins with-styled-jsx-plugins-app # or -pnpm create next-app -- --example with-styled-jsx-plugins with-styled-jsx-plugins-app +pnpm create next-app --example with-styled-jsx-plugins with-styled-jsx-plugins-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-styled-jsx-scss/README.md b/examples/with-styled-jsx-scss/README.md index fa9e44a90fe7f..18003c5ec5c9d 100644 --- a/examples/with-styled-jsx-scss/README.md +++ b/examples/with-styled-jsx-scss/README.md @@ -23,7 +23,7 @@ npx create-next-app --example with-styled-jsx-scss with-styled-jsx-scss-app # or yarn create next-app --example with-styled-jsx-scss with-styled-jsx-scss-app # or -pnpm create next-app -- --example with-styled-jsx-scss with-styled-jsx-scss-app +pnpm create next-app --example with-styled-jsx-scss with-styled-jsx-scss-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-styled-jsx/README.md b/examples/with-styled-jsx/README.md index 2c7267e75f36d..717eb9d035243 100644 --- a/examples/with-styled-jsx/README.md +++ b/examples/with-styled-jsx/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-styled-jsx with-styled-jsx-app # or yarn create next-app --example with-styled-jsx with-styled-jsx-app # or -pnpm create next-app -- --example with-styled-jsx with-styled-jsx-app +pnpm create next-app --example with-styled-jsx with-styled-jsx-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-styletron/README.md b/examples/with-styletron/README.md index 811877b7c097f..35d85c16c4f77 100644 --- a/examples/with-styletron/README.md +++ b/examples/with-styletron/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-styletron with-styletron-app # or yarn create next-app --example with-styletron with-styletron-app # or -pnpm create next-app -- --example with-styletron with-styletron-app +pnpm create next-app --example with-styletron with-styletron-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-supertokens/README.md b/examples/with-supertokens/README.md index d43bb9e9a0a0d..8ece1a3ffadcd 100644 --- a/examples/with-supertokens/README.md +++ b/examples/with-supertokens/README.md @@ -11,7 +11,7 @@ npx create-next-app --example with-supertokens with-supertokens-app # or yarn create next-app --example with-supertokens with-supertokens-app # or -pnpm create next-app -- --example with-supertokens with-supertokens-app +pnpm create next-app --example with-supertokens with-supertokens-app ``` - Run `yarn install` diff --git a/examples/with-tailwindcss-emotion/README.md b/examples/with-tailwindcss-emotion/README.md index edd95ad20aad4..5811d2c88431e 100644 --- a/examples/with-tailwindcss-emotion/README.md +++ b/examples/with-tailwindcss-emotion/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-tailwindcss-emotion with-tailwindcss-emotion- # or yarn create next-app --example with-tailwindcss-emotion with-tailwindcss-emotion-app # or -pnpm create next-app -- --example with-tailwindcss-emotion with-tailwindcss-emotion-app +pnpm create next-app --example with-tailwindcss-emotion with-tailwindcss-emotion-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-tailwindcss/README.md b/examples/with-tailwindcss/README.md index e63172771df69..b86f8ca5e7c7e 100644 --- a/examples/with-tailwindcss/README.md +++ b/examples/with-tailwindcss/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-tailwindcss with-tailwindcss-app # or yarn create next-app --example with-tailwindcss with-tailwindcss-app # or -pnpm create next-app -- --example with-tailwindcss with-tailwindcss-app +pnpm create next-app --example with-tailwindcss with-tailwindcss-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-temporal/README.md b/examples/with-temporal/README.md index b470c467a4466..5cca2c27555e1 100644 --- a/examples/with-temporal/README.md +++ b/examples/with-temporal/README.md @@ -61,7 +61,7 @@ npx create-next-app --example with-temporal next-temporal-app # or yarn create next-app --example with-temporal next-temporal-app # or -pnpm create next-app -- --example with-temporal next-temporal-app +pnpm create next-app --example with-temporal next-temporal-app ``` The Temporal Node SDK requires [Node `>= 14`, `node-gyp`, and Temporal Server](https://docs.temporal.io/docs/node/getting-started#step-0-prerequisites). Once you have everything installed, you can develop locally with the below commands in four different shells: diff --git a/examples/with-tesfy/README.md b/examples/with-tesfy/README.md index fcbac856991f6..a5a47508801a4 100644 --- a/examples/with-tesfy/README.md +++ b/examples/with-tesfy/README.md @@ -25,7 +25,7 @@ npx create-next-app --example with-tesfy with-tesfy-app # or yarn create next-app --example with-tesfy with-tesfy-app # or -pnpm create next-app -- --example with-tesfy with-tesfy-app +pnpm create next-app --example with-tesfy with-tesfy-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-three-js/README.md b/examples/with-three-js/README.md index 8bca69ca52694..f5cea84b2ce5f 100644 --- a/examples/with-three-js/README.md +++ b/examples/with-three-js/README.md @@ -21,7 +21,7 @@ npx create-next-app --example with-three-js with-three-js-app # or yarn create next-app --example with-three-js with-three-js-app # or -pnpm create next-app -- --example with-three-js with-three-js-app +pnpm create next-app --example with-three-js with-three-js-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-typescript-graphql/README.md b/examples/with-typescript-graphql/README.md index 06dbef23ee3d8..4d59a3700670a 100644 --- a/examples/with-typescript-graphql/README.md +++ b/examples/with-typescript-graphql/README.md @@ -33,7 +33,7 @@ npx create-next-app --example with-typescript-graphql with-typescript-graphql-ap # or yarn create next-app --example with-typescript-graphql with-typescript-graphql-app # or -pnpm create next-app -- --example with-typescript-graphql with-typescript-graphql-app +pnpm create next-app --example with-typescript-graphql with-typescript-graphql-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-typescript/README.md b/examples/with-typescript/README.md index 1cb1b539d0d68..c0b6f4800cb21 100644 --- a/examples/with-typescript/README.md +++ b/examples/with-typescript/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-typescript with-typescript-app # or yarn create next-app --example with-typescript with-typescript-app # or -pnpm create next-app -- --example with-typescript with-typescript-app +pnpm create next-app --example with-typescript with-typescript-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-typestyle/README.md b/examples/with-typestyle/README.md index 113fb7414a620..620361b552af8 100644 --- a/examples/with-typestyle/README.md +++ b/examples/with-typestyle/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-typestyle with-typestyle-app # or yarn create next-app --example with-typestyle with-typestyle-app # or -pnpm create next-app -- --example with-typestyle with-typestyle-app +pnpm create next-app --example with-typestyle with-typestyle-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-unsplash/README.md b/examples/with-unsplash/README.md index 0360061084de3..dc74bc3bf3e9a 100644 --- a/examples/with-unsplash/README.md +++ b/examples/with-unsplash/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-unsplash with-unsplash-app # or yarn create next-app --example with-unsplash with-unsplash-app # or -pnpm create next-app -- --example with-unsplash with-unsplash-app +pnpm create next-app --example with-unsplash with-unsplash-app ``` ## Configuration diff --git a/examples/with-unstated/README.md b/examples/with-unstated/README.md index de7dc2296c172..09121fbfaff57 100644 --- a/examples/with-unstated/README.md +++ b/examples/with-unstated/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-unstated with-unstated-app # or yarn create next-app --example with-unstated with-unstated-app # or -pnpm create next-app -- --example with-unstated with-unstated-app +pnpm create next-app --example with-unstated with-unstated-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-urql/README.md b/examples/with-urql/README.md index 74349e0aab7b1..9535ca03886d3 100644 --- a/examples/with-urql/README.md +++ b/examples/with-urql/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-urql with-urql-app # or yarn create next-app --example with-urql with-urql-app # or -pnpm create next-app -- --example with-urql with-urql-app +pnpm create next-app --example with-urql with-urql-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-userbase/README.md b/examples/with-userbase/README.md index a27bfa4dec5d7..b1142a57299b4 100644 --- a/examples/with-userbase/README.md +++ b/examples/with-userbase/README.md @@ -19,7 +19,7 @@ npx create-next-app --example with-userbase next-userbase-app # or yarn create next-app --example with-userbase next-userbase-app # or -pnpm create next-app -- --example with-userbase next-userbase-app +pnpm create next-app --example with-userbase next-userbase-app ``` ## Configuration diff --git a/examples/with-vercel-fetch/README.md b/examples/with-vercel-fetch/README.md index 4dd9f2e151659..a6f604c5ba362 100644 --- a/examples/with-vercel-fetch/README.md +++ b/examples/with-vercel-fetch/README.md @@ -17,5 +17,5 @@ npx create-next-app --example with-vercel-fetch with-vercel-fetch-app # or yarn create next-app --example with-vercel-fetch with-vercel-fetch-app # or -pnpm create next-app -- --example with-vercel-fetch with-vercel-fetch-app +pnpm create next-app --example with-vercel-fetch with-vercel-fetch-app ``` diff --git a/examples/with-videojs/README.md b/examples/with-videojs/README.md index dfce94b6b4250..0057a5133b144 100644 --- a/examples/with-videojs/README.md +++ b/examples/with-videojs/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-videojs with-videojs-app # or yarn create next-app --example with-videojs with-videojs-app # or -pnpm create next-app -- --example with-videojs with-videojs-app +pnpm create next-app --example with-videojs with-videojs-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-vitest/README.md b/examples/with-vitest/README.md index fa7d02af7bb6c..a294ceddd7032 100644 --- a/examples/with-vitest/README.md +++ b/examples/with-vitest/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-vitest with-vitest-app # or yarn create next-app --example with-vitest with-vitest-app # or -pnpm create next-app -- --example with-vitest with-vitest-app +pnpm create next-app --example with-vitest with-vitest-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-web-worker/README.md b/examples/with-web-worker/README.md index f393aa00321f8..a2517744ef2ec 100644 --- a/examples/with-web-worker/README.md +++ b/examples/with-web-worker/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-web-worker with-web-worker-app # or yarn create next-app --example with-web-worker with-web-worker-app # or -pnpm create next-app -- --example with-web-worker with-web-worker-app +pnpm create next-app --example with-web-worker with-web-worker-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-webassembly/README.md b/examples/with-webassembly/README.md index 1c2e2be9a55f0..61a0bd76269cd 100644 --- a/examples/with-webassembly/README.md +++ b/examples/with-webassembly/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-webassembly with-webassembly-app # or yarn create next-app --example with-webassembly with-webassembly-app # or -pnpm create next-app -- --example with-webassembly with-webassembly-app +pnpm create next-app --example with-webassembly with-webassembly-app ``` This example uses Rust compiled to wasm, the wasm file is included in the example, but to compile your own Rust code you'll have to [install](https://www.rust-lang.org/learn/get-started) Rust. diff --git a/examples/with-why-did-you-render/README.md b/examples/with-why-did-you-render/README.md index 225909ba08570..513423a76348d 100644 --- a/examples/with-why-did-you-render/README.md +++ b/examples/with-why-did-you-render/README.md @@ -72,7 +72,7 @@ npx create-next-app --example with-why-did-you-render with-why-did-you-render-ap # or yarn create next-app --example with-why-did-you-render with-why-did-you-render-app # or -pnpm create next-app -- --example with-why-did-you-render with-why-did-you-render-app +pnpm create next-app --example with-why-did-you-render with-why-did-you-render-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?filter=next.js&utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-xstate/README.md b/examples/with-xstate/README.md index 4252d24c14bec..cea6970e0004f 100644 --- a/examples/with-xstate/README.md +++ b/examples/with-xstate/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-xstate with-xstate-app # or yarn create next-app --example with-xstate with-xstate-app # or -pnpm create next-app -- --example with-xstate with-xstate-app +pnpm create next-app --example with-xstate with-xstate-app ``` ### Inspect your machines using `@xstate/inspect` diff --git a/examples/with-yarn-workspaces/README.md b/examples/with-yarn-workspaces/README.md index 06e865b670b7a..379e8cd78ab66 100644 --- a/examples/with-yarn-workspaces/README.md +++ b/examples/with-yarn-workspaces/README.md @@ -23,7 +23,7 @@ npx create-next-app --example with-yarn-workspaces with-yarn-workspaces-app # or yarn create next-app --example with-yarn-workspaces with-yarn-workspaces-app # or -pnpm create next-app -- --example with-yarn-workspaces with-yarn-workspaces-app +pnpm create next-app --example with-yarn-workspaces with-yarn-workspaces-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-yoga/README.md b/examples/with-yoga/README.md index 863a0779e6d08..53b82f83c6bdb 100644 --- a/examples/with-yoga/README.md +++ b/examples/with-yoga/README.md @@ -17,7 +17,7 @@ npx create-next-app --example with-yoga with-yoga-app # or yarn create next-app --example with-yoga with-yoga-app # or -pnpm create next-app -- --example with-yoga with-yoga-app +pnpm create next-app --example with-yoga with-yoga-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/examples/with-zones/README.md b/examples/with-zones/README.md index ec0861cda2cbf..14aa37f85fa27 100644 --- a/examples/with-zones/README.md +++ b/examples/with-zones/README.md @@ -15,7 +15,7 @@ npx create-next-app --example with-zones with-zones-app # or yarn create next-app --example with-zones with-zones-app # or -pnpm create next-app -- --example with-zones with-zones-app +pnpm create next-app --example with-zones with-zones-app ``` With multi zones you have multiple Next.js apps over a single app, therefore every app has its own dependencies and it runs independently. diff --git a/examples/with-zustand/README.md b/examples/with-zustand/README.md index bd68b1245858e..fdea30c0148c2 100644 --- a/examples/with-zustand/README.md +++ b/examples/with-zustand/README.md @@ -29,7 +29,7 @@ npx create-next-app --example with-zustand with-zustand-app # or yarn create next-app --example with-zustand with-zustand-app # or -pnpm create next-app -- --example with-zustand with-zustand-app +pnpm create next-app --example with-zustand with-zustand-app ``` Deploy it to the cloud with [Vercel](https://vercel.com/new?utm_source=github&utm_medium=readme&utm_campaign=next-example) ([Documentation](https://nextjs.org/docs/deployment)). diff --git a/packages/create-next-app/README.md b/packages/create-next-app/README.md index 68d7e3894bc85..1c37e54484f99 100644 --- a/packages/create-next-app/README.md +++ b/packages/create-next-app/README.md @@ -17,7 +17,7 @@ npx create-next-app@latest --typescript # or yarn create next-app --typescript # or -pnpm create next-app -- --typescript +pnpm create next-app --typescript ``` To create a new app in a specific folder, you can send a name as an argument. For example, the following command will create a new Next.js app called `blog-app` in a folder with the same name: