How i can remove tailwindcss from sage 10

i need work with bootstrap please help me how i can competently remove tailwindcss

Sage 10 is still in development, and Sage-Installer hasn’t yet been updated to support Sage 10.

So you’ll need to remove Tailwind manually:

Run the following in your Sage directory:

yarn remove tailwindcss
yarn add bootstrap

And update your stylesheets to import Bootstrap instead of Tailwind:
in resources/styles/app.scss remove

@import 'tailwindcss/base';

and add

@import '~bootstrap/scss/bootstrap';

This topic was automatically closed after 42 days. New replies are no longer allowed.