From a35699dc96995676644ae2244e71b6a41d8158c2 Mon Sep 17 00:00:00 2001 From: Max Stoiber Date: Tue, 16 Jan 2024 06:42:33 -0800 Subject: [PATCH] Fix npx --- README.md | 2 +- packages/core/README.md | 2 +- website/src/pages/docs/index.mdx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5a04d9db..905e070d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ When you are in the root of your app run the following command. This will install all the packages and generate the files you need. ```sh -npx create fuse-app +npx create-fuse-app ``` Then, run `npx fuse dev` (or `next dev` if you're using Next.js) and your API will be running at `localhost:4000/graphql`! (or `/api/fuse` in Next.js) diff --git a/packages/core/README.md b/packages/core/README.md index 5a04d9db..905e070d 100644 --- a/packages/core/README.md +++ b/packages/core/README.md @@ -8,7 +8,7 @@ When you are in the root of your app run the following command. This will install all the packages and generate the files you need. ```sh -npx create fuse-app +npx create-fuse-app ``` Then, run `npx fuse dev` (or `next dev` if you're using Next.js) and your API will be running at `localhost:4000/graphql`! (or `/api/fuse` in Next.js) diff --git a/website/src/pages/docs/index.mdx b/website/src/pages/docs/index.mdx index 779b2da0..1be3e24a 100644 --- a/website/src/pages/docs/index.mdx +++ b/website/src/pages/docs/index.mdx @@ -26,7 +26,7 @@ In the root folder of your application run `create-fuse-app` with npx, pnpm, or ```sh -npx create fuse-app +npx create-fuse-app ```