From 8a3ec4e99560a0f5a2c9c2f9ba3010f444752e3f Mon Sep 17 00:00:00 2001 From: Alex Matchneer Date: Mon, 15 Jan 2024 17:34:44 +0800 Subject: [PATCH] Fix pnpm init instructions (#13) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `pnpm init` doesn't take a `.` arg. ``` pnpm init .  ERR_PNPM_INIT_ARG  init command does not accept any arguments ``` --- src/content/docs/guides/first-server.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/guides/first-server.mdx b/src/content/docs/guides/first-server.mdx index 6213de9..fe722e6 100644 --- a/src/content/docs/guides/first-server.mdx +++ b/src/content/docs/guides/first-server.mdx @@ -32,7 +32,7 @@ npm init ```sh # create a new project with pnpm -pnpm init . +pnpm init ```