Home > Net >  Install tailwind css on asp.net core mvc
Install tailwind css on asp.net core mvc

Time:12-17

I have an asp.net core mvc project and i want to install tailwind css on my asp.net core mvc project ? I want to learn how to install tailwinf on asp.net core mvc ? Please help me.

CodePudding user response:

There are 3 ways you can add tailwind into your asp.net project.

  1. Install it using BamButz.MSBuild.TailwindCSS nuget package.
  2. Add a CDN link into your main file. You can get latest tailwind CDN from https://tailwindcss.com/docs/installation/play-cdn
  3. One solution is from this article. I haven't tried it. But it looks promising. You can have a look here
  • Related