From 4c4723250badde7087f33a1ab4e75a4b3d4c1c09 Mon Sep 17 00:00:00 2001 From: Greg Herbowicz Date: Wed, 20 Dec 2023 02:02:22 +0100 Subject: [PATCH] Update create-a-new-reactjs-app.md (#747) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix ERROR  Unknown option: 'template' --- _chapters/create-a-new-reactjs-app.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_chapters/create-a-new-reactjs-app.md b/_chapters/create-a-new-reactjs-app.md index 7f2e71aa4..15188febc 100644 --- a/_chapters/create-a-new-reactjs-app.md +++ b/_chapters/create-a-new-reactjs-app.md @@ -17,7 +17,7 @@ We are going to create a single page app using [React.js](https://facebook.githu {%change%} Run the following command **in the `packages/` directory**. ```bash -$ pnpm create vite frontend --template react-ts +$ pnpm create vite frontend -- --template react-ts ``` This will create your new project in the `frontend/` directory.