update pnpx -> npx on setup page

This commit is contained in:
Konstantin Wohlwend 2025-11-28 15:03:13 -08:00
parent eb23c43045
commit dc7337743b

View File

@ -51,11 +51,11 @@ export default function SetupPage(props: { toMetrics: () => void }) {
title: "Install Stack Auth",
content: <>
<Typography>
In a new or existing Next.js project, run:
In a new or existing Next.js project, install Stack Auth as a dependency into your project:
</Typography>
<CodeBlock
language="bash"
content={`pnpx @stackframe/init-stack@latest`}
content={`npx @stackframe/init-stack@latest`}
customRender={
<div className="p-4 font-mono text-sm">
<span className={commandClasses}>pnpx</span> <span className={nameClasses}>@stackframe/init-stack@latest</span>
@ -93,7 +93,7 @@ export default function SetupPage(props: { toMetrics: () => void }) {
title: "Install Stack Auth",
content: <>
<Typography>
In a new or existing React project, run:
In a new or existing React project, install Stack Auth&apos;s dependencies:
</Typography>
<CodeBlock
language="bash"