From 4e169b6fb6eae53b53a281f2b77fcf1bf68216d1 Mon Sep 17 00:00:00 2001 From: Noah Tye Date: Tue, 14 May 2024 16:14:23 -0700 Subject: [PATCH] docs: Make homepage installation instructions match docs (#2596) The /docs/installation pages contain this command: ``` npx panda init --postcss ``` But try-panda.tsx, rendered on the homepage, instructs: ``` npm run panda init -p ``` This change makes the homepage match the docs pages. --- website/src/components/sections/try-panda.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/components/sections/try-panda.tsx b/website/src/components/sections/try-panda.tsx index ab4ef6791..9e8cf6b1a 100644 --- a/website/src/components/sections/try-panda.tsx +++ b/website/src/components/sections/try-panda.tsx @@ -11,7 +11,7 @@ const installSteps = [ }, { title: 'Run the initialize command', - command: 'npm run panda init -p' + command: 'npx panda init --postcss' }, { title: 'Start using Panda in your project',