From 5c1a85d2ea301ba19ea0fe86df89ed973f92e082 Mon Sep 17 00:00:00 2001 From: Lee Robinson Date: Thu, 11 Mar 2021 08:14:51 -0600 Subject: [PATCH] Update Next.js <> Tailwind guide. --- src/pages/docs/guides/nextjs.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/docs/guides/nextjs.mdx b/src/pages/docs/guides/nextjs.mdx index c7b47ad69..25bf05fc3 100644 --- a/src/pages/docs/guides/nextjs.mdx +++ b/src/pages/docs/guides/nextjs.mdx @@ -8,9 +8,11 @@ tool: Next.js reference: name: Create Next App link: https://nextjs.org/docs/api-reference/create-next-app -script: npx create-next-app +script: npx create-next-app -e with-tailwindcss ``` +This will automatically configure your Tailwind setup based on the official Next.js example. If you'd like to configure Tailwind manually, continue with the rest of this guide. + --- ```preval setup