Home > Net >  Why is create-next-app command creating .tsx files instead of .js files?
Why is create-next-app command creating .tsx files instead of .js files?

Time:01-28

It seems to only be a problem when I add with-tailwindcss to the end of the command line? npx create-next-app -e with-tailwindcss project_name

CodePudding user response:

Proper way to install Next.js with Tailwind CSS would be:

npx create-next-app project_name
cd project_name
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p

More here: https://tailwindcss.com/docs/guides/nextjs

CodePudding user response:

The with-tailwindcss template you are using is setup with typescript.

You can find the source here on GitHub,

  •  Tags:  
  • Related