From af4c72a8edf393abc010e2642050e24ca9a60ad1 Mon Sep 17 00:00:00 2001 From: Steven Date: Wed, 30 Mar 2022 16:22:42 -0400 Subject: [PATCH 1/2] Add pnpm usage to docs --- contributing.md | 2 ++ docs/api-reference/create-next-app.md | 4 ++++ docs/basic-features/typescript.md | 2 ++ docs/getting-started.md | 4 ++++ packages/create-next-app/README.md | 18 +++++++++++++++--- 5 files changed, 27 insertions(+), 3 deletions(-) diff --git a/contributing.md b/contributing.md index e98980b0f01be97..0279cdf0ff6c37f 100644 --- a/contributing.md +++ b/contributing.md @@ -246,6 +246,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 e291dd5e94f5f11..2cd4ceae501bfd6 100644 --- a/docs/api-reference/create-next-app.md +++ b/docs/api-reference/create-next-app.md @@ -10,6 +10,8 @@ The easiest way to get started with Next.js is by using `create-next-app`. This npx create-next-app@latest # or yarn create next-app +# or +pnpm create next-app ``` You can create a [TypeScript project](https://github.com/vercel/next.js/blob/canary/docs/basic-features/typescript.md) with the `--ts, --typescript` flag: @@ -18,6 +20,8 @@ You can create a [TypeScript project](https://github.com/vercel/next.js/blob/can npx create-next-app@latest --ts # or yarn create next-app --typescript +# or +pnpm create next-app -- --ts ``` ### Options diff --git a/docs/basic-features/typescript.md b/docs/basic-features/typescript.md index 9869dc850e43104..5f49ffb6bf63d4d 100644 --- a/docs/basic-features/typescript.md +++ b/docs/basic-features/typescript.md @@ -27,6 +27,8 @@ You can create a TypeScript project with [`create-next-app`](https://nextjs.org/ npx create-next-app@latest --ts # or yarn create next-app --typescript +# or +pnpm create next-app -- --ts ``` ## Existing projects diff --git a/docs/getting-started.md b/docs/getting-started.md index 8506f02b9d493d2..b1497555c9969fe 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -25,6 +25,8 @@ We recommend creating a new Next.js app using `create-next-app`, which sets up e npx create-next-app@latest # or yarn create next-app +# or +pnpm create next-app ``` If you want to start with a TypeScript project you can use the `--typescript` flag: @@ -33,6 +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 +pnpm create next-app -- --typescript ``` After the installation is complete: diff --git a/packages/create-next-app/README.md b/packages/create-next-app/README.md index 12ebd9d5cd02a70..74b85d940780b26 100644 --- a/packages/create-next-app/README.md +++ b/packages/create-next-app/README.md @@ -3,19 +3,31 @@ The easiest way to get started with Next.js is by using `create-next-app`. This CLI tool enables you to quickly start building a new Next.js application, with everything set up for you. You can create a new app using the default Next.js template, or by using one of the [official Next.js examples](https://github.com/vercel/next.js/tree/canary/examples). To get started, use the following command: ```bash -npx create-next-app +npx create-next-app@latest +# or +yarn create next-app +# or +pnpm create next-app ``` Or, for a [TypeScript project](https://github.com/vercel/next.js/blob/canary/docs/basic-features/typescript.md): ```bash -npx create-next-app --typescript +npx create-next-app@latest --typescript +# or +yarn create next-app --typescript +# or +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: ```bash -npx create-next-app blog-app +npx create-next-app@latest blog-app +# or +yarn create next-app blog-app +# or +pnpm create next-app blog-app ``` ## Options From 4f2d81d3edccebf4a932d74865278d0b3e94564e Mon Sep 17 00:00:00 2001 From: Steven Date: Wed, 30 Mar 2022 16:33:02 -0400 Subject: [PATCH 2/2] Update examples --- examples/active-class-name/README.md | 2 ++ examples/amp-first/README.md | 2 ++ examples/amp-story/README.md | 2 ++ examples/amp/README.md | 2 ++ examples/analyze-bundles/README.md | 2 ++ examples/api-routes-apollo-server-and-client-auth/README.md | 2 ++ examples/api-routes-apollo-server-and-client/README.md | 2 ++ examples/api-routes-apollo-server/README.md | 2 ++ examples/api-routes-cors/README.md | 2 ++ examples/api-routes-graphql/README.md | 2 ++ examples/api-routes-middleware/README.md | 2 ++ examples/api-routes-rate-limit/README.md | 2 ++ examples/api-routes-rest/README.md | 2 ++ examples/api-routes/README.md | 2 ++ examples/auth0/README.md | 2 ++ examples/basic-css/README.md | 2 ++ examples/basic-export/README.md | 2 ++ examples/blog-starter-typescript/README.md | 2 ++ examples/blog-starter/README.md | 2 ++ examples/blog/README.md | 2 ++ examples/catch-all-routes/README.md | 2 ++ examples/cms-agilitycms/README.md | 2 ++ examples/cms-builder-io/README.md | 2 ++ examples/cms-buttercms/README.md | 2 ++ examples/cms-contentful/README.md | 2 ++ examples/cms-cosmic/README.md | 2 ++ examples/cms-datocms/README.md | 2 ++ examples/cms-drupal/README.md | 2 ++ examples/cms-ghost/README.md | 2 ++ examples/cms-graphcms/README.md | 2 ++ examples/cms-kontent/README.md | 2 ++ examples/cms-prepr/README.md | 2 ++ examples/cms-prismic/README.md | 2 ++ examples/cms-sanity/README.md | 2 ++ examples/cms-storyblok/README.md | 2 ++ examples/cms-strapi/README.md | 2 ++ examples/cms-takeshape/README.md | 2 ++ examples/cms-tina/README.md | 2 ++ examples/cms-umbraco-heartcore/README.md | 2 ++ examples/cms-wordpress/README.md | 2 ++ examples/custom-routes-proxying/README.md | 2 ++ examples/custom-server-actionhero/README.md | 2 ++ examples/custom-server-express/README.md | 2 ++ examples/custom-server-fastify/README.md | 2 ++ examples/custom-server-hapi/README.md | 2 ++ examples/custom-server-koa/README.md | 2 ++ examples/custom-server-polka/README.md | 2 ++ examples/custom-server-typescript/README.md | 2 ++ examples/data-fetch/README.md | 2 ++ examples/dynamic-routing/README.md | 2 ++ examples/environment-variables/readme.md | 2 ++ examples/fast-refresh-demo/README.md | 2 ++ examples/gh-pages/README.md | 2 ++ examples/head-elements/README.md | 2 ++ examples/headers/README.md | 2 ++ examples/hello-world/README.md | 2 ++ examples/i18n-routing/README.md | 2 ++ examples/image-component/README.md | 2 ++ examples/layout-component/README.md | 2 ++ examples/modularize-imports/README.md | 2 ++ examples/nested-components/README.md | 2 ++ examples/next-forms/README.md | 2 ++ examples/progressive-render/README.md | 2 ++ examples/progressive-web-app/README.md | 2 ++ examples/react-remove-properties/README.md | 2 ++ examples/redirects/README.md | 2 ++ examples/remove-console/README.md | 2 ++ examples/rewrites/README.md | 2 ++ examples/script-component/README.md | 2 ++ examples/ssr-caching/README.md | 2 ++ examples/styled-jsx-with-csp/README.md | 2 ++ examples/svg-components/README.md | 2 ++ examples/using-preact/README.md | 2 ++ examples/using-router/README.md | 2 ++ examples/with-absolute-imports/README.md | 2 ++ examples/with-algolia-react-instantsearch/README.md | 2 ++ examples/with-ant-design/README.md | 2 ++ examples/with-aphrodite/README.md | 2 ++ examples/with-apollo-and-redux/README.md | 2 ++ examples/with-apollo-neo4j-graphql/README.md | 2 ++ examples/with-apollo/README.md | 2 ++ examples/with-app-layout/README.md | 2 ++ examples/with-aws-amplify-typescript/README.md | 2 ++ examples/with-aws-amplify/README.md | 2 ++ examples/with-babel-macros/README.md | 2 ++ examples/with-carbon-components/README.md | 2 ++ examples/with-cerebral/README.md | 2 ++ examples/with-chakra-ui-typescript/README.md | 2 ++ examples/with-chakra-ui/README.md | 2 ++ examples/with-clerk/README.md | 2 ++ examples/with-compiled-css/README.md | 2 ++ examples/with-context-api/README.md | 2 ++ examples/with-cookie-auth-fauna/README.md | 2 ++ examples/with-couchbase/README.md | 2 ++ examples/with-cssed/README.md | 2 ++ examples/with-custom-babel-config/README.md | 2 ++ examples/with-cxs/README.md | 2 ++ examples/with-cypress/README.md | 2 ++ examples/with-deta-base/README.md | 2 ++ examples/with-docker-multi-env/README.md | 2 ++ examples/with-docker/README.md | 2 ++ examples/with-draft-js/README.md | 2 ++ examples/with-dynamic-import/README.md | 2 ++ examples/with-elasticsearch/README.md | 2 ++ examples/with-electron-typescript/README.md | 2 ++ examples/with-electron/README.md | 2 ++ examples/with-emotion-swc/README.md | 2 ++ examples/with-emotion-vanilla/README.md | 2 ++ examples/with-emotion/README.md | 2 ++ examples/with-env-from-next-config-js/README.md | 2 ++ examples/with-eslint/README.md | 2 ++ examples/with-expo-typescript/README.md | 2 ++ examples/with-expo/README.md | 2 ++ examples/with-facebook-pixel/README.md | 2 ++ examples/with-fauna/README.md | 2 ++ examples/with-fela/README.md | 2 ++ examples/with-filbert/README.md | 2 ++ examples/with-firebase-cloud-messaging/README.md | 2 ++ examples/with-firebase-hosting/README.md | 2 ++ examples/with-firebase/README.md | 2 ++ examples/with-flow/README.md | 2 ++ examples/with-framer-motion/README.md | 2 ++ examples/with-goober/README.md | 2 ++ examples/with-google-analytics-amp/README.md | 2 ++ examples/with-google-analytics/README.md | 2 ++ examples/with-google-tag-manager/README.md | 2 ++ examples/with-graphql-hooks/README.md | 2 ++ examples/with-graphql-react/README.md | 2 ++ examples/with-grommet/README.md | 2 ++ examples/with-gsap/README.md | 2 ++ examples/with-hls-js/README.md | 2 ++ examples/with-http2/README.md | 2 ++ examples/with-i18n-next-intl/README.md | 2 ++ examples/with-i18n-rosetta/README.md | 2 ++ examples/with-ionic-typescript/README.md | 2 ++ examples/with-iron-session/README.md | 2 ++ examples/with-jest-babel/README.md | 2 ++ examples/with-jest/README.md | 2 ++ examples/with-joi/README.md | 2 ++ examples/with-jotai/README.md | 2 ++ examples/with-kea/README.md | 2 ++ examples/with-knex/README.md | 2 ++ examples/with-linaria/README.md | 2 ++ examples/with-lingui/README.md | 2 ++ examples/with-loading/README.md | 2 ++ examples/with-magic/README.md | 2 ++ examples/with-mdbreact/README.md | 2 ++ examples/with-mdx-remote/README.md | 2 ++ examples/with-mdx/README.md | 2 ++ examples/with-mobx-react-lite/README.md | 2 ++ examples/with-mobx-state-tree-typescript/README.md | 2 ++ examples/with-mobx-state-tree/README.md | 2 ++ examples/with-mobx/README.md | 2 ++ examples/with-mocha/README.md | 2 ++ examples/with-mongodb-mongoose/README.md | 2 ++ examples/with-mongodb/README.md | 2 ++ examples/with-msw/README.md | 2 ++ examples/with-mux-video/README.md | 2 ++ examples/with-mysql/README.md | 2 ++ examples/with-neo4j/README.md | 2 ++ examples/with-netlify-cms/README.md | 2 ++ examples/with-next-css/README.md | 2 ++ examples/with-next-offline/README.md | 2 ++ examples/with-next-page-transitions/README.md | 2 ++ examples/with-next-sass/README.md | 2 ++ examples/with-next-seo/README.md | 2 ++ examples/with-next-sitemap/README.md | 2 ++ examples/with-next-translate/README.md | 2 ++ examples/with-nhost-auth-realtime-graphql/README.md | 2 ++ examples/with-orbit-components/README.md | 2 ++ examples/with-overmind/README.md | 2 ++ examples/with-passport-and-next-connect/README.md | 2 ++ examples/with-passport/README.md | 2 ++ examples/with-paste-typescript/README.md | 2 ++ examples/with-patternfly/README.md | 2 ++ examples/with-plausible/README.md | 2 ++ examples/with-playwright/README.md | 2 ++ examples/with-polyfills/README.md | 2 ++ examples/with-portals-ssr/README.md | 2 ++ examples/with-portals/README.md | 2 ++ examples/with-prefetching/README.md | 2 ++ examples/with-quill-js/README.md | 2 ++ examples/with-rbx-bulma-pro/README.md | 2 ++ examples/with-react-bootstrap/README.md | 2 ++ examples/with-react-ga/README.md | 2 ++ examples/with-react-helmet/README.md | 2 ++ examples/with-react-hook-form/README.md | 2 ++ examples/with-react-intl/README.md | 2 ++ examples/with-react-jss/README.md | 2 ++ examples/with-react-md-typescript/README.md | 2 ++ examples/with-react-md/README.md | 2 ++ examples/with-react-multi-carousel/README.md | 2 ++ examples/with-react-native-web/README.md | 2 ++ examples/with-react-toolbox/README.md | 2 ++ examples/with-react-with-styles/README.md | 2 ++ examples/with-reactstrap/README.md | 2 ++ examples/with-realm-web/README.md | 2 ++ examples/with-reason-relay/README.md | 2 ++ examples/with-reasonml-todo/README.md | 2 ++ examples/with-reasonml/README.md | 2 ++ examples/with-rebass/README.md | 2 ++ examples/with-recoil/README.md | 2 ++ examples/with-redis/README.md | 2 ++ examples/with-redux-observable/README.md | 2 ++ examples/with-redux-persist/README.md | 2 ++ examples/with-redux-saga/README.md | 2 ++ examples/with-redux-thunk/README.md | 2 ++ examples/with-redux-wrapper/README.md | 2 ++ examples/with-redux/README.md | 2 ++ examples/with-reflexjs/README.md | 2 ++ examples/with-reflux/README.md | 2 ++ examples/with-relay-modern/README.md | 2 ++ examples/with-rematch/README.md | 2 ++ examples/with-route-as-modal/README.md | 2 ++ examples/with-segment-analytics/README.md | 2 ++ examples/with-semantic-ui/README.md | 2 ++ examples/with-sentry/README.md | 2 ++ examples/with-service-worker/README.md | 2 ++ examples/with-shallow-routing/README.md | 2 ++ examples/with-sitemap/README.md | 2 ++ examples/with-skynexui-components/README.md | 2 ++ examples/with-slate/README.md | 2 ++ examples/with-static-export/README.md | 2 ++ examples/with-stencil/README.md | 2 ++ examples/with-stitches/README.md | 2 ++ examples/with-stomp/README.md | 2 ++ examples/with-storybook-styled-jsx-scss/README.md | 2 ++ examples/with-storybook/README.md | 2 ++ examples/with-strict-csp/README.md | 2 ++ examples/with-stripe-typescript/README.md | 2 ++ examples/with-styled-components-babel/README.md | 2 ++ examples/with-styled-components-rtl/README.md | 2 ++ examples/with-styled-components/README.md | 2 ++ examples/with-styled-jsx-plugins/README.md | 2 ++ examples/with-styled-jsx-scss/README.md | 2 ++ examples/with-styled-jsx/README.md | 2 ++ examples/with-styletron/README.md | 2 ++ examples/with-supertokens/README.md | 2 ++ examples/with-tailwindcss-emotion/README.md | 2 ++ examples/with-tailwindcss/README.md | 2 ++ examples/with-temporal/README.md | 2 ++ examples/with-tesfy/README.md | 2 ++ examples/with-three-js/README.md | 2 ++ examples/with-typescript-graphql/README.md | 2 ++ examples/with-typescript-styled-components/README.md | 2 ++ examples/with-typescript/README.md | 2 ++ examples/with-typestyle/README.md | 2 ++ examples/with-unsplash/README.md | 2 ++ examples/with-unstated/README.md | 2 ++ examples/with-urql/README.md | 2 ++ examples/with-userbase/README.md | 2 ++ examples/with-vercel-fetch/README.md | 2 ++ examples/with-videojs/README.md | 2 ++ examples/with-web-worker/README.md | 2 ++ examples/with-webassembly/README.md | 2 ++ examples/with-why-did-you-render/README.md | 2 ++ examples/with-xstate/README.md | 2 ++ examples/with-yarn-workspaces/README.md | 2 ++ examples/with-zones/README.md | 2 ++ examples/with-zustand/README.md | 2 ++ 260 files changed, 520 insertions(+) diff --git a/examples/active-class-name/README.md b/examples/active-class-name/README.md index 2beeba3e3cade86..904d5f7e78db642 100644 --- a/examples/active-class-name/README.md +++ b/examples/active-class-name/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 4db9d29709f0751..471e28bc181bfc4 100644 --- a/examples/amp-first/README.md +++ b/examples/amp-first/README.md @@ -21,6 +21,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 008980bf3214f30..91b2bbf1a27230f 100644 --- a/examples/amp-story/README.md +++ b/examples/amp-story/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 33aa31b3684e58f..bb6a4fa93d6b935 100644 --- a/examples/amp/README.md +++ b/examples/amp/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 02481f057930312..bc108d790da499d 100644 --- a/examples/analyze-bundles/README.md +++ b/examples/analyze-bundles/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ### 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 18c549291094e5d..b2e3edda6aee89d 100644 --- a/examples/api-routes-apollo-server-and-client-auth/README.md +++ b/examples/api-routes-apollo-server-and-client-auth/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example api-routes-apollo-server-and-client-auth api-routes-apollo-server-and-client-auth-app # 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 ``` 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 0929222aba86792..0e2ebaf4368e3aa 100644 --- a/examples/api-routes-apollo-server-and-client/README.md +++ b/examples/api-routes-apollo-server-and-client/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example api-routes-apollo-server-and-client api-routes-apollo-server-and-client-app # 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 ``` 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 775647bd007eeeb..4466ede389abb05 100644 --- a/examples/api-routes-apollo-server/README.md +++ b/examples/api-routes-apollo-server/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example api-routes-apollo-server api-routes-apollo-server-app # 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 ``` 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 c7985f9e72caa31..e894e59495cfc2c 100644 --- a/examples/api-routes-cors/README.md +++ b/examples/api-routes-cors/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 26429515510c1c4..449141e4469c9ad 100644 --- a/examples/api-routes-graphql/README.md +++ b/examples/api-routes-graphql/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 4da0802bcc86c3f..e4d6cfe4d353bf6 100644 --- a/examples/api-routes-middleware/README.md +++ b/examples/api-routes-middleware/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 65f0d38c1f70c88..91e5560a72cfdb3 100644 --- a/examples/api-routes-rate-limit/README.md +++ b/examples/api-routes-rate-limit/README.md @@ -30,6 +30,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 643168e1ab27040..e4bf19801b7a03a 100644 --- a/examples/api-routes-rest/README.md +++ b/examples/api-routes-rest/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ### Deploy to Vercel diff --git a/examples/api-routes/README.md b/examples/api-routes/README.md index 325c7ac6630a0af..108cb253d8ef359 100644 --- a/examples/api-routes/README.md +++ b/examples/api-routes/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 e2b2d97bb4381af..f28e16961c55ae9 100644 --- a/examples/auth0/README.md +++ b/examples/auth0/README.md @@ -19,6 +19,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuring Auth0 diff --git a/examples/basic-css/README.md b/examples/basic-css/README.md index dd7b15ec2564578..e42a02b77decd19 100644 --- a/examples/basic-css/README.md +++ b/examples/basic-css/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 9f991ed18f02ecf..69e459f43e9860a 100644 --- a/examples/basic-export/README.md +++ b/examples/basic-export/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 d0762fc48731bcd..75b98d962ef25dd 100644 --- a/examples/blog-starter-typescript/README.md +++ b/examples/blog-starter-typescript/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example blog-starter-typescript blog-starter-typescript-app # 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 ``` 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 4ed711c3557cde1..1744d7d37567122 100644 --- a/examples/blog-starter/README.md +++ b/examples/blog-starter/README.md @@ -47,6 +47,8 @@ or ``` yarn create next-app --example blog-starter blog-starter-app +# or +pnpm create next-app -- --example blog-starter blog-starter-app ``` diff --git a/examples/blog/README.md b/examples/blog/README.md index f9c07a6b0e24463..9a4971ec3eea6a2 100644 --- a/examples/blog/README.md +++ b/examples/blog/README.md @@ -31,6 +31,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 4172669d9f7e175..23268580fc665eb 100644 --- a/examples/catch-all-routes/README.md +++ b/examples/catch-all-routes/README.md @@ -25,6 +25,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 b7a66cbcea02d6c..36ad38162942159 100644 --- a/examples/cms-agilitycms/README.md +++ b/examples/cms-agilitycms/README.md @@ -42,6 +42,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/cms-builder-io/README.md b/examples/cms-builder-io/README.md index f08e79b70755741..589d1a2968ca795 100644 --- a/examples/cms-builder-io/README.md +++ b/examples/cms-builder-io/README.md @@ -14,6 +14,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/cms-buttercms/README.md b/examples/cms-buttercms/README.md index fc3c156ea449822..bf57965882e9277 100644 --- a/examples/cms-buttercms/README.md +++ b/examples/cms-buttercms/README.md @@ -39,6 +39,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/cms-contentful/README.md b/examples/cms-contentful/README.md index d091e06272162f7..34d963c8ff9c8fe 100644 --- a/examples/cms-contentful/README.md +++ b/examples/cms-contentful/README.md @@ -39,6 +39,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/cms-cosmic/README.md b/examples/cms-cosmic/README.md index 3bd28143fddcb94..589c1a9a24e540f 100644 --- a/examples/cms-cosmic/README.md +++ b/examples/cms-cosmic/README.md @@ -39,6 +39,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/cms-datocms/README.md b/examples/cms-datocms/README.md index 77c1d4bb3475bd8..924fbb2722cb0a8 100644 --- a/examples/cms-datocms/README.md +++ b/examples/cms-datocms/README.md @@ -39,6 +39,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/cms-drupal/README.md b/examples/cms-drupal/README.md index 7b27e17e005d319..954038080a006d7 100644 --- a/examples/cms-drupal/README.md +++ b/examples/cms-drupal/README.md @@ -38,6 +38,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Setup Drupal diff --git a/examples/cms-ghost/README.md b/examples/cms-ghost/README.md index fab3a4557757b26..8bbbba42e6c113b 100644 --- a/examples/cms-ghost/README.md +++ b/examples/cms-ghost/README.md @@ -37,6 +37,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ### Setp 1. Run Next.js in development mode diff --git a/examples/cms-graphcms/README.md b/examples/cms-graphcms/README.md index 6e31c352ef58cf0..044a50882939be1 100644 --- a/examples/cms-graphcms/README.md +++ b/examples/cms-graphcms/README.md @@ -42,6 +42,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/cms-kontent/README.md b/examples/cms-kontent/README.md index 583cf19d2f24f24..c95a03ee0d4d632 100644 --- a/examples/cms-kontent/README.md +++ b/examples/cms-kontent/README.md @@ -39,6 +39,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/cms-prepr/README.md b/examples/cms-prepr/README.md index b44762576f2f4ec..92df09c6ccb23ed 100644 --- a/examples/cms-prepr/README.md +++ b/examples/cms-prepr/README.md @@ -41,6 +41,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/cms-prismic/README.md b/examples/cms-prismic/README.md index c3ec749acbd81ed..25991fdbebcb839 100644 --- a/examples/cms-prismic/README.md +++ b/examples/cms-prismic/README.md @@ -38,6 +38,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/cms-sanity/README.md b/examples/cms-sanity/README.md index baa88574e837708..d3cc5ac30d78942 100644 --- a/examples/cms-sanity/README.md +++ b/examples/cms-sanity/README.md @@ -45,6 +45,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/cms-storyblok/README.md b/examples/cms-storyblok/README.md index 042404940228935..1c7ebe1529d0135 100644 --- a/examples/cms-storyblok/README.md +++ b/examples/cms-storyblok/README.md @@ -39,6 +39,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/cms-strapi/README.md b/examples/cms-strapi/README.md index 6ef231d35274cec..aff5e39697f08db 100644 --- a/examples/cms-strapi/README.md +++ b/examples/cms-strapi/README.md @@ -39,6 +39,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/cms-takeshape/README.md b/examples/cms-takeshape/README.md index 4cfcbd8c43efeb0..5c9475731a6176c 100644 --- a/examples/cms-takeshape/README.md +++ b/examples/cms-takeshape/README.md @@ -38,6 +38,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/cms-tina/README.md b/examples/cms-tina/README.md index 6f0b3efb5d941d2..2375425abf49aeb 100644 --- a/examples/cms-tina/README.md +++ b/examples/cms-tina/README.md @@ -31,6 +31,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example cms-tina cms-tina-app # or yarn create next-app --example cms-ghost cms-tina-app +# or +pnpm create next-app -- --example cms-ghost 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 3803070e46d0753..def24e4d3f340e4 100755 --- a/examples/cms-umbraco-heartcore/README.md +++ b/examples/cms-umbraco-heartcore/README.md @@ -39,6 +39,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/cms-wordpress/README.md b/examples/cms-wordpress/README.md index 153cabcadbcaf1c..793e91ac50a37f6 100644 --- a/examples/cms-wordpress/README.md +++ b/examples/cms-wordpress/README.md @@ -38,6 +38,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/custom-routes-proxying/README.md b/examples/custom-routes-proxying/README.md index 31b72c02b891ec6..88173a339c8eb03 100644 --- a/examples/custom-routes-proxying/README.md +++ b/examples/custom-routes-proxying/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ### 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 62dcb0675609cb1..3b83adbd4631f5b 100644 --- a/examples/custom-server-actionhero/README.md +++ b/examples/custom-server-actionhero/README.md @@ -13,6 +13,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example custom-server-actionhero custom-server-actionhero-app # 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 ``` ## How does this work? diff --git a/examples/custom-server-express/README.md b/examples/custom-server-express/README.md index 063fa028096f5eb..a29d3c20aab25b8 100644 --- a/examples/custom-server-express/README.md +++ b/examples/custom-server-express/README.md @@ -18,4 +18,6 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` diff --git a/examples/custom-server-fastify/README.md b/examples/custom-server-fastify/README.md index de26fbb9602318f..08e27e057f3cfb7 100644 --- a/examples/custom-server-fastify/README.md +++ b/examples/custom-server-fastify/README.md @@ -20,4 +20,6 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` diff --git a/examples/custom-server-hapi/README.md b/examples/custom-server-hapi/README.md index 63d9c3ed1225edc..b4ba29590f17ecf 100644 --- a/examples/custom-server-hapi/README.md +++ b/examples/custom-server-hapi/README.md @@ -18,4 +18,6 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` diff --git a/examples/custom-server-koa/README.md b/examples/custom-server-koa/README.md index 278579c7d1bc4c6..f6d9030111aab45 100644 --- a/examples/custom-server-koa/README.md +++ b/examples/custom-server-koa/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Side note: Enabling gzip compression diff --git a/examples/custom-server-polka/README.md b/examples/custom-server-polka/README.md index d91a6b9407e32ba..97b7a9a6dc0e132 100644 --- a/examples/custom-server-polka/README.md +++ b/examples/custom-server-polka/README.md @@ -18,4 +18,6 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` diff --git a/examples/custom-server-typescript/README.md b/examples/custom-server-typescript/README.md index f100433b8d58d97..80c8e2ccb98a76f 100644 --- a/examples/custom-server-typescript/README.md +++ b/examples/custom-server-typescript/README.md @@ -19,4 +19,6 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example custom-server-typescript custom-server-typescript-app # 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 ``` diff --git a/examples/data-fetch/README.md b/examples/data-fetch/README.md index fd43c255d23434f..e27dc1ddfcf1538 100644 --- a/examples/data-fetch/README.md +++ b/examples/data-fetch/README.md @@ -19,6 +19,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 1944e28e70ac3ba..fc23c234a049c3a 100644 --- a/examples/dynamic-routing/README.md +++ b/examples/dynamic-routing/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 d6ffcfcce64ce5a..d244f746a2bf194 100644 --- a/examples/environment-variables/readme.md +++ b/examples/environment-variables/readme.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 7fbb3b73f6d4237..ec9785b686d718a 100644 --- a/examples/fast-refresh-demo/README.md +++ b/examples/fast-refresh-demo/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 fbd34532847cfaa..0cfff646843b675 100644 --- a/examples/gh-pages/README.md +++ b/examples/gh-pages/README.md @@ -10,6 +10,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ### Deploy it to github diff --git a/examples/head-elements/README.md b/examples/head-elements/README.md index 3304aff0aab2ab8..3844d7a74d90c69 100644 --- a/examples/head-elements/README.md +++ b/examples/head-elements/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 eca28d362568c3d..df62fb0e47e2054 100644 --- a/examples/headers/README.md +++ b/examples/headers/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 ff2c2da16660897..8592bc9bf23e90a 100644 --- a/examples/hello-world/README.md +++ b/examples/hello-world/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 e4bc986d74f317f..021bc69b7bb8416 100644 --- a/examples/i18n-routing/README.md +++ b/examples/i18n-routing/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 0a028aa05f50f01..dbf0a4c6bb3a078 100644 --- a/examples/image-component/README.md +++ b/examples/image-component/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 414a482de7520c6..a1f83973c7db16b 100644 --- a/examples/layout-component/README.md +++ b/examples/layout-component/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 c80cdb596798bf7..3a1b6df2317c4ac 100644 --- a/examples/modularize-imports/README.md +++ b/examples/modularize-imports/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 76262f379f1fa8c..51a55a0e7658b56 100644 --- a/examples/nested-components/README.md +++ b/examples/nested-components/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 21ce3b9e6a614cb..212004b23676ec9 100644 --- a/examples/next-forms/README.md +++ b/examples/next-forms/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 6f653bd634a7424..7a786b8deef1671 100644 --- a/examples/progressive-render/README.md +++ b/examples/progressive-render/README.md @@ -30,6 +30,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 1358917e92f65fa..726102bc3629f70 100644 --- a/examples/progressive-web-app/README.md +++ b/examples/progressive-web-app/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 20a58dcd3105873..53bac229f16606e 100644 --- a/examples/react-remove-properties/README.md +++ b/examples/react-remove-properties/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example react-remove-properties react-remove-properties-app # 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 ``` 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 07e8e10e4f308c4..ccb3d2b30f13b6f 100644 --- a/examples/redirects/README.md +++ b/examples/redirects/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 cb24cb06c24274b..4ef4af967f40db6 100644 --- a/examples/remove-console/README.md +++ b/examples/remove-console/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 5d16b71fa220d85..19f14cd498f4ba1 100644 --- a/examples/rewrites/README.md +++ b/examples/rewrites/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 dc2e9d31338db05..aa7e29e9ab21c7c 100644 --- a/examples/script-component/README.md +++ b/examples/script-component/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 5972762cb1bee6b..7649f4bc3ec0053 100644 --- a/examples/ssr-caching/README.md +++ b/examples/ssr-caching/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 752466cf1d06998..850c715e9788e2b 100644 --- a/examples/styled-jsx-with-csp/README.md +++ b/examples/styled-jsx-with-csp/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 b63c3a405fb80b2..e19c0ea5bed4789 100644 --- a/examples/svg-components/README.md +++ b/examples/svg-components/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 817b7a564b6d83a..72cfad4d45c75b2 100644 --- a/examples/using-preact/README.md +++ b/examples/using-preact/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 5f303be433f6089..27fd53cf3cb23d6 100644 --- a/examples/using-router/README.md +++ b/examples/using-router/README.md @@ -19,6 +19,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 e84ea80288eff89..a4f9a0b8802660a 100644 --- a/examples/with-absolute-imports/README.md +++ b/examples/with-absolute-imports/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 14f262033aefef3..fad73681d14f5fe 100644 --- a/examples/with-algolia-react-instantsearch/README.md +++ b/examples/with-algolia-react-instantsearch/README.md @@ -10,6 +10,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-algolia-react-instantsearch with-algolia-react-instantsearch-app # 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 ``` To set up Algolia: diff --git a/examples/with-ant-design/README.md b/examples/with-ant-design/README.md index 9419ed92695bc3f..3c0de016088de1c 100644 --- a/examples/with-ant-design/README.md +++ b/examples/with-ant-design/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 622d5257e4faadf..3170214a3a5a73d 100644 --- a/examples/with-aphrodite/README.md +++ b/examples/with-aphrodite/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 f1f55be5d1b981d..06ef6593d73b979 100644 --- a/examples/with-apollo-and-redux/README.md +++ b/examples/with-apollo-and-redux/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 9787cb2ac0718c3..935f1a0040ee48f 100644 --- a/examples/with-apollo-neo4j-graphql/README.md +++ b/examples/with-apollo-neo4j-graphql/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-apollo-neo4j-graphql with-apollo-neo4j-graphql-app # 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 ``` ## Configuration diff --git a/examples/with-apollo/README.md b/examples/with-apollo/README.md index d7681e1f2e10aa2..5504d54f8d3be49 100644 --- a/examples/with-apollo/README.md +++ b/examples/with-apollo/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 dbaeefafe235aba..b59fa3a06b17062 100644 --- a/examples/with-app-layout/README.md +++ b/examples/with-app-layout/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 9d4778590a9b045..3fb2290a025efb9 100644 --- a/examples/with-aws-amplify-typescript/README.md +++ b/examples/with-aws-amplify-typescript/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-aws-amplify-typescript nextjs-aws-amplify-typescript-app # 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 ``` ### Initialize and deploy the Amplify project diff --git a/examples/with-aws-amplify/README.md b/examples/with-aws-amplify/README.md index 21f9d97e543f91f..f11984530b9013d 100644 --- a/examples/with-aws-amplify/README.md +++ b/examples/with-aws-amplify/README.md @@ -17,6 +17,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ### Initialize and deploy the Amplify project diff --git a/examples/with-babel-macros/README.md b/examples/with-babel-macros/README.md index 7d56310b5bc3f0d..c0d1afc61806c57 100644 --- a/examples/with-babel-macros/README.md +++ b/examples/with-babel-macros/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 af10357c70ee0b4..088a96d91d47419 100644 --- a/examples/with-carbon-components/README.md +++ b/examples/with-carbon-components/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 964f16c643f1772..76f29ceac4216ff 100644 --- a/examples/with-cerebral/README.md +++ b/examples/with-cerebral/README.md @@ -48,6 +48,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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-typescript/README.md b/examples/with-chakra-ui-typescript/README.md index b0d6e19fce5d50d..ec21712d4005dd3 100644 --- a/examples/with-chakra-ui-typescript/README.md +++ b/examples/with-chakra-ui-typescript/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-chakra-ui-typescript with-chakra-ui-typescript-app # or yarn create next-app --example with-chakra-ui-typescript with-chakra-ui-typescript-app +# or +pnpm create next-app -- --example with-chakra-ui-typescript with-chakra-ui-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-chakra-ui/README.md b/examples/with-chakra-ui/README.md index 1a0076e85fef15c..3c4630663289f9e 100644 --- a/examples/with-chakra-ui/README.md +++ b/examples/with-chakra-ui/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 d245df305c242b7..ed63002daae1793 100644 --- a/examples/with-clerk/README.md +++ b/examples/with-clerk/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 b6e2d8aed5c7913..d03e28c92e52f94 100644 --- a/examples/with-compiled-css/README.md +++ b/examples/with-compiled-css/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 facda900d5147d5..344d1e67fe5d638 100644 --- a/examples/with-context-api/README.md +++ b/examples/with-context-api/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 46d0248b93f2f2a..1557b9b5f22a689 100644 --- a/examples/with-cookie-auth-fauna/README.md +++ b/examples/with-cookie-auth-fauna/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ### Run locally diff --git a/examples/with-couchbase/README.md b/examples/with-couchbase/README.md index 3f4d7e84be74210..f6aff20e8e940f0 100644 --- a/examples/with-couchbase/README.md +++ b/examples/with-couchbase/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 49f442215764b72..5e98bb33bbd9203 100644 --- a/examples/with-cssed/README.md +++ b/examples/with-cssed/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 64db98626e6fbeb..ef98c3a822c799a 100644 --- a/examples/with-custom-babel-config/README.md +++ b/examples/with-custom-babel-config/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-custom-babel-config with-custom-babel-config-app # 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 ``` 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 08ebafc68721945..24e33baf38124d7 100644 --- a/examples/with-cxs/README.md +++ b/examples/with-cxs/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 f705bcecbc14299..f741c1e9cabce44 100644 --- a/examples/with-cypress/README.md +++ b/examples/with-cypress/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 6b7f3840d0bb32e..09ec62190aa5368 100644 --- a/examples/with-deta-base/README.md +++ b/examples/with-deta-base/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/with-docker-multi-env/README.md b/examples/with-docker-multi-env/README.md index 2799adfd136ae6c..a69cec92e21a356 100644 --- a/examples/with-docker-multi-env/README.md +++ b/examples/with-docker-multi-env/README.md @@ -10,6 +10,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 9ece6c46559f9c1..5d598da3cf89a14 100644 --- a/examples/with-docker/README.md +++ b/examples/with-docker/README.md @@ -10,6 +10,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Using Docker diff --git a/examples/with-draft-js/README.md b/examples/with-draft-js/README.md index bef341b7385b90d..10181b1aaf4adc0 100644 --- a/examples/with-draft-js/README.md +++ b/examples/with-draft-js/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 034604c6b9757eb..509a19dd1da054c 100644 --- a/examples/with-dynamic-import/README.md +++ b/examples/with-dynamic-import/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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-elasticsearch/README.md b/examples/with-elasticsearch/README.md index 27cdb88ca98fac6..ab09faa974d088f 100644 --- a/examples/with-elasticsearch/README.md +++ b/examples/with-elasticsearch/README.md @@ -21,6 +21,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/with-electron-typescript/README.md b/examples/with-electron-typescript/README.md index eae5cb4979c5297..17a9be98edbfbb0 100644 --- a/examples/with-electron-typescript/README.md +++ b/examples/with-electron-typescript/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-electron-typescript with-electron-typescript-app # 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 ``` Available commands: diff --git a/examples/with-electron/README.md b/examples/with-electron/README.md index fd95f3d8684e9cf..8ff6eca53461918 100644 --- a/examples/with-electron/README.md +++ b/examples/with-electron/README.md @@ -14,6 +14,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 12b4f677a8d04a5..2b5e1a0af79f8bb 100644 --- a/examples/with-emotion-swc/README.md +++ b/examples/with-emotion-swc/README.md @@ -26,6 +26,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 03a861a69598320..1060eba358ead54 100644 --- a/examples/with-emotion-vanilla/README.md +++ b/examples/with-emotion-vanilla/README.md @@ -19,6 +19,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 c50a3d18707f09e..c19b612d459cab0 100644 --- a/examples/with-emotion/README.md +++ b/examples/with-emotion/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 941cc53e126e19d..664068030ccf695 100644 --- a/examples/with-env-from-next-config-js/README.md +++ b/examples/with-env-from-next-config-js/README.md @@ -26,6 +26,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-env-from-next-config-js with-env-from-next-config-js-app # 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 ``` 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 76fbeda87e6b9ba..b8ccf59dfc9d0ef 100644 --- a/examples/with-eslint/README.md +++ b/examples/with-eslint/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 667d53bd1f5f187..769512418be2574 100644 --- a/examples/with-expo-typescript/README.md +++ b/examples/with-expo-typescript/README.md @@ -34,6 +34,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ### Running web diff --git a/examples/with-expo/README.md b/examples/with-expo/README.md index 898131a8a640fa3..9ee8fc34666fa26 100644 --- a/examples/with-expo/README.md +++ b/examples/with-expo/README.md @@ -34,6 +34,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ### Running web diff --git a/examples/with-facebook-pixel/README.md b/examples/with-facebook-pixel/README.md index fbc75d0f6bde698..d733c2c1a380995 100644 --- a/examples/with-facebook-pixel/README.md +++ b/examples/with-facebook-pixel/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 aa6f8279ef9e0ea..3fd69b217b26b56 100644 --- a/examples/with-fauna/README.md +++ b/examples/with-fauna/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 e46002f87516e02..9f65a4647180241 100755 --- a/examples/with-fela/README.md +++ b/examples/with-fela/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 63a1bf0293f57a4..82ffac7a3122ba0 100644 --- a/examples/with-filbert/README.md +++ b/examples/with-filbert/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 536a29dc7096c68..5b0afbe3b045870 100644 --- a/examples/with-firebase-cloud-messaging/README.md +++ b/examples/with-firebase-cloud-messaging/README.md @@ -10,6 +10,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-firebase-cloud-messaging with-firebase-cloud-messaging-app # 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 ``` ## Set your send id diff --git a/examples/with-firebase-hosting/README.md b/examples/with-firebase-hosting/README.md index b1d4dd1ce2b57b8..4ff5b7552b1d06e 100644 --- a/examples/with-firebase-hosting/README.md +++ b/examples/with-firebase-hosting/README.md @@ -21,6 +21,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` **Important:** Update `.firebaserc` and add your firebase project ID. diff --git a/examples/with-firebase/README.md b/examples/with-firebase/README.md index 21f4d46385f5433..f8aee51058054eb 100644 --- a/examples/with-firebase/README.md +++ b/examples/with-firebase/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/with-flow/README.md b/examples/with-flow/README.md index ac7ecb11aa167c7..6fef107b58748a8 100644 --- a/examples/with-flow/README.md +++ b/examples/with-flow/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 9c17d58434b1334..2a99020d0ed4e6d 100644 --- a/examples/with-framer-motion/README.md +++ b/examples/with-framer-motion/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 d5d43b85963f2fc..ec9c910c6f0a00f 100644 --- a/examples/with-goober/README.md +++ b/examples/with-goober/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 8d7e8c6fa9c49d1..6b117c0a5982c8c 100644 --- a/examples/with-google-analytics-amp/README.md +++ b/examples/with-google-analytics-amp/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-google-analytics-amp with-google-analytics-amp-app # 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 ``` 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 95826f855e20c7e..6c3e81e7a335b93 100644 --- a/examples/with-google-analytics/README.md +++ b/examples/with-google-analytics/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 a0a459140d90a5f..3c9dd9381f4b076 100644 --- a/examples/with-google-tag-manager/README.md +++ b/examples/with-google-tag-manager/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-google-tag-manager with-google-tag-manager-app # 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 ``` 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-hooks/README.md b/examples/with-graphql-hooks/README.md index 546696c9056d76a..2cba7f7045b3caa 100644 --- a/examples/with-graphql-hooks/README.md +++ b/examples/with-graphql-hooks/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 c7b083091663056..ac68f2a7e3fbd9f 100644 --- a/examples/with-graphql-react/README.md +++ b/examples/with-graphql-react/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 a6d7c8e9ed1bc22..84ad5e5fbb6d51c 100644 --- a/examples/with-grommet/README.md +++ b/examples/with-grommet/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 e2b3d7111517bdf..6a27b68efad306e 100644 --- a/examples/with-gsap/README.md +++ b/examples/with-gsap/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 5a788f1f10e8af5..8bc36ffaa82e617 100644 --- a/examples/with-hls-js/README.md +++ b/examples/with-hls-js/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 5331c76f3f26f03..d6aeb5e33d26c00 100644 --- a/examples/with-http2/README.md +++ b/examples/with-http2/README.md @@ -10,6 +10,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 9d9096f756dd07b..dbf46e6816b1987 100644 --- a/examples/with-i18n-next-intl/README.md +++ b/examples/with-i18n-next-intl/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 42305d0c5e2a30d..26f375c0a7be501 100644 --- a/examples/with-i18n-rosetta/README.md +++ b/examples/with-i18n-rosetta/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 89eb811be784962..fd417d39dd8c88f 100644 --- a/examples/with-ionic-typescript/README.md +++ b/examples/with-ionic-typescript/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 736dab0735d8cdc..477f8da13b9d302 100644 --- a/examples/with-iron-session/README.md +++ b/examples/with-iron-session/README.md @@ -35,6 +35,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 3bff54450932d7f..10b08f01a05a62f 100644 --- a/examples/with-jest-babel/README.md +++ b/examples/with-jest-babel/README.md @@ -14,6 +14,8 @@ In your terminal, run the following command: 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 ``` ## Run Jest Tests diff --git a/examples/with-jest/README.md b/examples/with-jest/README.md index ab9de62830f4b2d..62981938146f8a9 100644 --- a/examples/with-jest/README.md +++ b/examples/with-jest/README.md @@ -14,6 +14,8 @@ In your terminal, run the following command: 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 ``` ## Run Jest Tests diff --git a/examples/with-joi/README.md b/examples/with-joi/README.md index 49ea16a0af0095b..d546dfbdf203771 100644 --- a/examples/with-joi/README.md +++ b/examples/with-joi/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 35591ce36785c5a..334373c0c4879d5 100644 --- a/examples/with-jotai/README.md +++ b/examples/with-jotai/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 09fcacaca00f5c5..60a420c31ab116f 100644 --- a/examples/with-kea/README.md +++ b/examples/with-kea/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 acc64f50cf8392b..31c6d55b2d24e3c 100644 --- a/examples/with-knex/README.md +++ b/examples/with-knex/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/with-linaria/README.md b/examples/with-linaria/README.md index c22f9acf39df379..cf8de7d3f5cd5e6 100644 --- a/examples/with-linaria/README.md +++ b/examples/with-linaria/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 86b1b4bb0635d3b..6dc2bbbab1b9732 100644 --- a/examples/with-lingui/README.md +++ b/examples/with-lingui/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 6083df2b7c693a4..b8c0bb2f4147927 100644 --- a/examples/with-loading/README.md +++ b/examples/with-loading/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 368015fcbba420e..728abfaac4211a2 100644 --- a/examples/with-magic/README.md +++ b/examples/with-magic/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/with-mdbreact/README.md b/examples/with-mdbreact/README.md index e20ab1301bbe044..ac3c720465e8601 100644 --- a/examples/with-mdbreact/README.md +++ b/examples/with-mdbreact/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 8c08583dfb38ef3..c1e8fa50049be47 100644 --- a/examples/with-mdx-remote/README.md +++ b/examples/with-mdx-remote/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 875d737c37c94c6..b3f9f7cf0c3cf18 100644 --- a/examples/with-mdx/README.md +++ b/examples/with-mdx/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 53ef87536840d25..e7aa97ac23f2117 100644 --- a/examples/with-mobx-react-lite/README.md +++ b/examples/with-mobx-react-lite/README.md @@ -30,6 +30,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 190d8bda662bcab..80f7c87e0f566e4 100644 --- a/examples/with-mobx-state-tree-typescript/README.md +++ b/examples/with-mobx-state-tree-typescript/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-mobx-state-tree-typescript with-mobx-state-tree-typescript-app # 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 ``` 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 6dd278a6d9c0dca..c0e710516efa6fe 100644 --- a/examples/with-mobx-state-tree/README.md +++ b/examples/with-mobx-state-tree/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 d6fa366398e3be3..cf99b28e4aedecc 100644 --- a/examples/with-mobx/README.md +++ b/examples/with-mobx/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 666e9e9e9145a93..a741c9fc21de8e8 100644 --- a/examples/with-mocha/README.md +++ b/examples/with-mocha/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Run Mocha tests diff --git a/examples/with-mongodb-mongoose/README.md b/examples/with-mongodb-mongoose/README.md index 1c96e6751b67112..addcd7382684d63 100644 --- a/examples/with-mongodb-mongoose/README.md +++ b/examples/with-mongodb-mongoose/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/with-mongodb/README.md b/examples/with-mongodb/README.md index 12db73e8f41fd07..290474dae5214fe 100644 --- a/examples/with-mongodb/README.md +++ b/examples/with-mongodb/README.md @@ -21,6 +21,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/with-msw/README.md b/examples/with-msw/README.md index dd13738eac59952..e97689b7b8bf2d9 100644 --- a/examples/with-msw/README.md +++ b/examples/with-msw/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 d06882d9d4e7b22..7386ef604a21ab5 100644 --- a/examples/with-mux-video/README.md +++ b/examples/with-mux-video/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Note diff --git a/examples/with-mysql/README.md b/examples/with-mysql/README.md index a853b6584dea697..a6aace78813c2ec 100644 --- a/examples/with-mysql/README.md +++ b/examples/with-mysql/README.md @@ -34,6 +34,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 8f139a09e5f48e3..3d7598a0643f01d 100644 --- a/examples/with-neo4j/README.md +++ b/examples/with-neo4j/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/with-netlify-cms/README.md b/examples/with-netlify-cms/README.md index 84ad44c143aa575..22e3aa278345be9 100644 --- a/examples/with-netlify-cms/README.md +++ b/examples/with-netlify-cms/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 1fa6387c7a9952f..94560c562f8907a 100644 --- a/examples/with-next-css/README.md +++ b/examples/with-next-css/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 26cabeee05fdaab..8a35df062484a1c 100644 --- a/examples/with-next-offline/README.md +++ b/examples/with-next-offline/README.md @@ -10,6 +10,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 aa1c653092500fd..660b5427afaa14b 100644 --- a/examples/with-next-page-transitions/README.md +++ b/examples/with-next-page-transitions/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-next-page-transitions with-next-page-transitions-app # 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 ``` 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 1d690c2f11705ea..a5486606a80e74f 100644 --- a/examples/with-next-sass/README.md +++ b/examples/with-next-sass/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` Run production build with: diff --git a/examples/with-next-seo/README.md b/examples/with-next-seo/README.md index 1e7749bfe952b0a..d68ff1dfbe02cb3 100644 --- a/examples/with-next-seo/README.md +++ b/examples/with-next-seo/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 b1f67ee1d997a9b..8ed74addb28d937 100644 --- a/examples/with-next-sitemap/README.md +++ b/examples/with-next-sitemap/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 cd713a5f57c305a..2d0b583c1f60ab1 100644 --- a/examples/with-next-translate/README.md +++ b/examples/with-next-translate/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 428b5a3c30ebeb4..be41ce5a091d1a3 100644 --- a/examples/with-nhost-auth-realtime-graphql/README.md +++ b/examples/with-nhost-auth-realtime-graphql/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/with-orbit-components/README.md b/examples/with-orbit-components/README.md index f4d80ea565c2bf5..6bef308c9f8e734 100644 --- a/examples/with-orbit-components/README.md +++ b/examples/with-orbit-components/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 afe4f0714d2a0f0..f7223b17a3621f5 100644 --- a/examples/with-overmind/README.md +++ b/examples/with-overmind/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 b3bf43872a683b8..8583b4bee6303aa 100644 --- a/examples/with-passport-and-next-connect/README.md +++ b/examples/with-passport-and-next-connect/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-passport-and-next-connect with-passport-and-next-connect-app # 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 ``` 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 4032d0f89f8f4b0..a3a041df886d98d 100644 --- a/examples/with-passport/README.md +++ b/examples/with-passport/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 3c91dd7bd0fe0bd..dff5e4a3485fdbe 100644 --- a/examples/with-paste-typescript/README.md +++ b/examples/with-paste-typescript/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 bf981bb4cd08ef2..445898ba709a18e 100644 --- a/examples/with-patternfly/README.md +++ b/examples/with-patternfly/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 c3ac2dd69d37c82..534a0a825b7de8a 100644 --- a/examples/with-plausible/README.md +++ b/examples/with-plausible/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 601b36a445bc5fb..9b9ea483c0bf3ac 100644 --- a/examples/with-playwright/README.md +++ b/examples/with-playwright/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 699b031fe47d881..8e6e9eab980b3c4 100644 --- a/examples/with-polyfills/README.md +++ b/examples/with-polyfills/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 b6b708fb9a6a5c3..9b931f5fb6b90da 100644 --- a/examples/with-portals-ssr/README.md +++ b/examples/with-portals-ssr/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 523af234ac422a8..468bcf122cb3ae7 100644 --- a/examples/with-portals/README.md +++ b/examples/with-portals/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 8828bb34b570136..52d2b587d909bd6 100644 --- a/examples/with-prefetching/README.md +++ b/examples/with-prefetching/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 0e503eca00a6b82..e5cde9b551fc52e 100644 --- a/examples/with-quill-js/README.md +++ b/examples/with-quill-js/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 86669b5a564276b..58cb1a2e6ef4a9d 100644 --- a/examples/with-rbx-bulma-pro/README.md +++ b/examples/with-rbx-bulma-pro/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 a0be63517161ae3..35df2ad911fc32d 100644 --- a/examples/with-react-bootstrap/README.md +++ b/examples/with-react-bootstrap/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 11c37b302f0a1d9..7c8108ff3faf5f5 100644 --- a/examples/with-react-ga/README.md +++ b/examples/with-react-ga/README.md @@ -17,6 +17,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 ef917b2fe7a1a6b..117eccc718958bf 100644 --- a/examples/with-react-helmet/README.md +++ b/examples/with-react-helmet/README.md @@ -19,6 +19,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 d25c2c411aee246..ce096b4340d5ca0 100644 --- a/examples/with-react-hook-form/README.md +++ b/examples/with-react-hook-form/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 7706ac9164e3ec7..fa3f3120b866a58 100644 --- a/examples/with-react-intl/README.md +++ b/examples/with-react-intl/README.md @@ -10,6 +10,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 3e90f3546e3c8b6..a8999954f33bf78 100644 --- a/examples/with-react-jss/README.md +++ b/examples/with-react-jss/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 199156bec5697ae..3d0a5642ab89b4e 100644 --- a/examples/with-react-md-typescript/README.md +++ b/examples/with-react-md-typescript/README.md @@ -31,6 +31,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-react-md-typescript with-react-md-typescript-app # 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 ``` 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 b00ac6fb9f9808e..624fc2662f49b6d 100644 --- a/examples/with-react-md/README.md +++ b/examples/with-react-md/README.md @@ -32,6 +32,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 18dcf7945f56623..977b5083730e1ba 100644 --- a/examples/with-react-multi-carousel/README.md +++ b/examples/with-react-multi-carousel/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-react-multi-carousel with-react-multi-carousel-app # 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 ``` 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 262e18348b28cd7..71e7b26cc7c3b0b 100644 --- a/examples/with-react-native-web/README.md +++ b/examples/with-react-native-web/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 1625bc56bd1f311..dc72446365d9e00 100644 --- a/examples/with-react-toolbox/README.md +++ b/examples/with-react-toolbox/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 033ff003863a5ec..5046c16a1f1dd97 100644 --- a/examples/with-react-with-styles/README.md +++ b/examples/with-react-with-styles/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 756f022a2b4c38f..30f72ad5808f9b9 100644 --- a/examples/with-reactstrap/README.md +++ b/examples/with-reactstrap/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 61339859606a385..d6bc913128bf5b1 100644 --- a/examples/with-realm-web/README.md +++ b/examples/with-realm-web/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 0a0a464ca033967..5acce16d18a3922 100644 --- a/examples/with-reason-relay/README.md +++ b/examples/with-reason-relay/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 a7aa61234949e97..4c84936fcf48345 100644 --- a/examples/with-reasonml-todo/README.md +++ b/examples/with-reasonml-todo/README.md @@ -28,6 +28,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 bab95e3447e6ebe..6b06a079790c010 100644 --- a/examples/with-reasonml/README.md +++ b/examples/with-reasonml/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 2c6cbe76b2d698b..bc63b388223b658 100644 --- a/examples/with-rebass/README.md +++ b/examples/with-rebass/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 ddf6edb81c30d37..d3964fae013a5c2 100644 --- a/examples/with-recoil/README.md +++ b/examples/with-recoil/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 f5668ad4c85b7da..faed3edbf3e10fa 100644 --- a/examples/with-redis/README.md +++ b/examples/with-redis/README.md @@ -27,6 +27,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 37b15dab8aa1571..06a479ce77b799e 100644 --- a/examples/with-redux-observable/README.md +++ b/examples/with-redux-observable/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 4902b7ce25f8b72..62c11c732025eff 100644 --- a/examples/with-redux-persist/README.md +++ b/examples/with-redux-persist/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 9dcf5c50d49fb3c..8ce85bd69031d4d 100644 --- a/examples/with-redux-saga/README.md +++ b/examples/with-redux-saga/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 e035510d37fd02e..79f34b3fc68a8e1 100644 --- a/examples/with-redux-thunk/README.md +++ b/examples/with-redux-thunk/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 d2d2e91735b6448..654a2861d3d8771 100644 --- a/examples/with-redux-wrapper/README.md +++ b/examples/with-redux-wrapper/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 b25fa6e8435cf8d..fd59309b72279e7 100644 --- a/examples/with-redux/README.md +++ b/examples/with-redux/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 016074c36571561..22eb622a836f16c 100644 --- a/examples/with-reflexjs/README.md +++ b/examples/with-reflexjs/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 f449f3a3e7262b8..ca221baf22da407 100644 --- a/examples/with-reflux/README.md +++ b/examples/with-reflux/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 4f95a7bbe5aed6b..de8766b9579422d 100644 --- a/examples/with-relay-modern/README.md +++ b/examples/with-relay-modern/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` Download schema introspection data from configured Relay endpoint diff --git a/examples/with-rematch/README.md b/examples/with-rematch/README.md index 5a0165eba15b683..809ab409e05da82 100644 --- a/examples/with-rematch/README.md +++ b/examples/with-rematch/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 4e85a397a530779..0050d6ddb5fa614 100644 --- a/examples/with-route-as-modal/README.md +++ b/examples/with-route-as-modal/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 481f3981474ce12..4305b144a421a3e 100644 --- a/examples/with-segment-analytics/README.md +++ b/examples/with-segment-analytics/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 1c054059c8e92ac..a102c3c8f19e3f7 100644 --- a/examples/with-semantic-ui/README.md +++ b/examples/with-semantic-ui/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 1372909a5addddc..65a98e4200bff11 100644 --- a/examples/with-sentry/README.md +++ b/examples/with-sentry/README.md @@ -39,6 +39,8 @@ To begin, execute [`create-next-app`](https://github.com/vercel/next.js/tree/can 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 ``` 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 af05928b51d2453..65bd4f27f256dce 100644 --- a/examples/with-service-worker/README.md +++ b/examples/with-service-worker/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 25b884fcbcb84fc..77fd49e33b8db0c 100644 --- a/examples/with-shallow-routing/README.md +++ b/examples/with-shallow-routing/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 f64c53678f55c7d..a7c90d8a2a16cea 100644 --- a/examples/with-sitemap/README.md +++ b/examples/with-sitemap/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 83d7e339eb62d0d..a3edb1133399618 100644 --- a/examples/with-skynexui-components/README.md +++ b/examples/with-skynexui-components/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-skynexui-components with-skynexui-components-app # 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 ``` 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 32e71a32901b74a..2dca487a20defa3 100644 --- a/examples/with-slate/README.md +++ b/examples/with-slate/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 11570a44e57f241..f0bb282cc08650b 100644 --- a/examples/with-static-export/README.md +++ b/examples/with-static-export/README.md @@ -18,4 +18,6 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` diff --git a/examples/with-stencil/README.md b/examples/with-stencil/README.md index 43328e35324f9aa..85b623ede1ab3f3 100644 --- a/examples/with-stencil/README.md +++ b/examples/with-stencil/README.md @@ -14,6 +14,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 8d6de7711e71dc2..4bd22fd070a33e5 100644 --- a/examples/with-stitches/README.md +++ b/examples/with-stitches/README.md @@ -16,6 +16,8 @@ Execute [Create Next App](https://github.com/vercel/next.js/tree/canary/packages 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 ``` 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 c65b6a4b4334d64..bb6de85d110191d 100644 --- a/examples/with-stomp/README.md +++ b/examples/with-stomp/README.md @@ -14,6 +14,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 ac995645480ba2e..7505064c37daf5e 100644 --- a/examples/with-storybook-styled-jsx-scss/README.md +++ b/examples/with-storybook-styled-jsx-scss/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-storybook-styled-jsx-scss with-storybook-styled-jsx-scss-app # 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 ``` ### Run Storybook diff --git a/examples/with-storybook/README.md b/examples/with-storybook/README.md index 35ef96b5e24d1c7..1fe01ca30f808f3 100644 --- a/examples/with-storybook/README.md +++ b/examples/with-storybook/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ### Run Storybook diff --git a/examples/with-strict-csp/README.md b/examples/with-strict-csp/README.md index 8d856ec63325147..c303aba1ec45c06 100644 --- a/examples/with-strict-csp/README.md +++ b/examples/with-strict-csp/README.md @@ -19,6 +19,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 bf758720bf6ccba..b3fce7656bf93eb 100644 --- a/examples/with-stripe-typescript/README.md +++ b/examples/with-stripe-typescript/README.md @@ -69,6 +69,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ### Required configuration diff --git a/examples/with-styled-components-babel/README.md b/examples/with-styled-components-babel/README.md index f9f489ed9459fd1..f12db0832f7341a 100644 --- a/examples/with-styled-components-babel/README.md +++ b/examples/with-styled-components-babel/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-styled-components-babel with-styled-components-babel-app # 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 ``` 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 68c4857e22cd8bd..36e9e8bb16b0f9d 100644 --- a/examples/with-styled-components-rtl/README.md +++ b/examples/with-styled-components-rtl/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-styled-components-rtl with-styled-components-rtl-app # 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 ``` 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 689e990cbae800e..37ecaa7f328b499 100644 --- a/examples/with-styled-components/README.md +++ b/examples/with-styled-components/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 b9983a82f8c322b..06d2b11303d8450 100644 --- a/examples/with-styled-jsx-plugins/README.md +++ b/examples/with-styled-jsx-plugins/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-styled-jsx-plugins with-styled-jsx-plugins-app # 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 ``` 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 825ed12a256d920..2c9835713561ec2 100644 --- a/examples/with-styled-jsx-scss/README.md +++ b/examples/with-styled-jsx-scss/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 29f39f2dc691e16..14dbaa04961a575 100644 --- a/examples/with-styled-jsx/README.md +++ b/examples/with-styled-jsx/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 8da62c17bfa662b..b6e37265b09036d 100644 --- a/examples/with-styletron/README.md +++ b/examples/with-styletron/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 31f3c4660c62063..9a662055174937d 100644 --- a/examples/with-supertokens/README.md +++ b/examples/with-supertokens/README.md @@ -10,6 +10,8 @@ This is a simple set up for applications protected by SuperTokens. 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 ``` - Run `yarn install` diff --git a/examples/with-tailwindcss-emotion/README.md b/examples/with-tailwindcss-emotion/README.md index 42927fe9e578191..ef4301ef6ed59cd 100644 --- a/examples/with-tailwindcss-emotion/README.md +++ b/examples/with-tailwindcss-emotion/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-tailwindcss-emotion with-tailwindcss-emotion-app # 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 ``` 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 4dc4d5a2a66b1b1..5be2b41b30dbf33 100644 --- a/examples/with-tailwindcss/README.md +++ b/examples/with-tailwindcss/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 1543e1c96309cd3..666b03f8305f424 100644 --- a/examples/with-temporal/README.md +++ b/examples/with-temporal/README.md @@ -60,6 +60,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 9e59525c2a98d4d..c3c24951acbe10e 100644 --- a/examples/with-tesfy/README.md +++ b/examples/with-tesfy/README.md @@ -24,6 +24,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 7d0b87ae0aeeb08..5ea60e30cfdf0c1 100644 --- a/examples/with-three-js/README.md +++ b/examples/with-three-js/README.md @@ -20,6 +20,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 ecbf46add2c0b76..c7f4eb4b35117fa 100644 --- a/examples/with-typescript-graphql/README.md +++ b/examples/with-typescript-graphql/README.md @@ -31,6 +31,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-typescript-graphql with-typescript-graphql-app # 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 ``` 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-styled-components/README.md b/examples/with-typescript-styled-components/README.md index 9fa51bc36a08011..b2e5f75e6ffc05f 100644 --- a/examples/with-typescript-styled-components/README.md +++ b/examples/with-typescript-styled-components/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-typescript-styled-components with-typescript-styled-components-app # or yarn create next-app --example with-typescript-styled-components with-typescript-styled-components-app +# or +pnpm create next-app -- --example with-typescript-styled-components with-typescript-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-typescript/README.md b/examples/with-typescript/README.md index 50bf12650db7538..897f79301f200fe 100644 --- a/examples/with-typescript/README.md +++ b/examples/with-typescript/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 760473b895cf408..7c8fefbd0a3553a 100644 --- a/examples/with-typestyle/README.md +++ b/examples/with-typestyle/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 452d880e72ddc2b..87dcd88790f39f6 100644 --- a/examples/with-unsplash/README.md +++ b/examples/with-unsplash/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/with-unstated/README.md b/examples/with-unstated/README.md index 860a562427dbdeb..369391cf2aef204 100644 --- a/examples/with-unstated/README.md +++ b/examples/with-unstated/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 622f66a5337b9f8..f9a64991422938c 100644 --- a/examples/with-urql/README.md +++ b/examples/with-urql/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 57f51b508ece9d2..957ede8466b3717 100644 --- a/examples/with-userbase/README.md +++ b/examples/with-userbase/README.md @@ -18,6 +18,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ## Configuration diff --git a/examples/with-vercel-fetch/README.md b/examples/with-vercel-fetch/README.md index 9c1601fb87f4975..7d06a753c4a1f0f 100644 --- a/examples/with-vercel-fetch/README.md +++ b/examples/with-vercel-fetch/README.md @@ -16,4 +16,6 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` diff --git a/examples/with-videojs/README.md b/examples/with-videojs/README.md index d091dc696c9fd14..8dfca95db58bad8 100644 --- a/examples/with-videojs/README.md +++ b/examples/with-videojs/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 0cf00b2760ce318..d79686457ed9f51 100644 --- a/examples/with-web-worker/README.md +++ b/examples/with-web-worker/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 27997ea82d6f0ab..5ea9ebfa37d8bd5 100644 --- a/examples/with-webassembly/README.md +++ b/examples/with-webassembly/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 23b8816685eebe9..15fc1345c00fb2a 100644 --- a/examples/with-why-did-you-render/README.md +++ b/examples/with-why-did-you-render/README.md @@ -71,6 +71,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag npx create-next-app --example with-why-did-you-render with-why-did-you-render-app # 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 ``` 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 08e94a0bd01ce91..2f3fb7bf55edaef 100644 --- a/examples/with-xstate/README.md +++ b/examples/with-xstate/README.md @@ -16,6 +16,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` ### Inspect your machines using `@xstate/inspect` diff --git a/examples/with-yarn-workspaces/README.md b/examples/with-yarn-workspaces/README.md index c5f75654fdd89f3..9b78be8bff67bc1 100644 --- a/examples/with-yarn-workspaces/README.md +++ b/examples/with-yarn-workspaces/README.md @@ -22,6 +22,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 faf89a1b1d60991..04f75f858fe56cf 100644 --- a/examples/with-zones/README.md +++ b/examples/with-zones/README.md @@ -14,6 +14,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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 4328433715f115e..875f8bb3749aaf0 100644 --- a/examples/with-zustand/README.md +++ b/examples/with-zustand/README.md @@ -28,6 +28,8 @@ Execute [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packag 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 ``` 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)).