Replies: 1 comment 5 replies
|
You can do the same thing as in the documentation: <script src="https://unpkg.com/@tailwindcss/browser@4"></script>
<style type="text/tailwindcss">
@layer theme, base, components, utilities;
@import "tailwindcss/theme.css" layer(theme);
@import "tailwindcss/utilities.css" layer(utilities);
</style> |
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
With Tailwind 3 I could use the Play CDN and disable the Preflight styles like this:
However with Tailwind 4 there is no
tailwind.configobject. How can I disable the preflight styles using the Play CDN or any other method that does not involve a build step?All reactions