tailwindcss-jit-cdn
tailwindcss-jit-cdn copied to clipboard
Tailwind CSS JIT in your browser
When I use the following config I get the expected results. Tailwind, classes containing "-secondary" use the purple palette. ``` { theme: { extend: { colors: { primary: { "50":"#eff6ff","100":"#dbeafe","200":"#bfdbfe","300":"#93c5fd","400":"#60a5fa","500":"#3b82f6","600":"#2563eb","700":"#1d4ed8","800":"#1e40af","900":"#1e3a8a"...
When adding the CDN and previewing my page in Safari I am seeing the following error: `SyntaxError: No identifiers allowed directly after numeric literal` This does not happen in Chrome...
Since tailwind usually adds prefixes itself (https://tailwindcss.com/docs/browser-support#vendor-prefixes), I think this module might need to as well, otherwise some of the classes don't work properly. I understand that this might increase...
Hey Marcel 👋, I've gone ahead and added an option for oberserverElement. I added this to the `main.js` file, where it will merge a default options object with `window.tailwindOptions`. This...
From today, a project that was working well yesterday, is giving me this error "The `transform` class does not exist. If `transform` is a custom class, make sure it is...
Hello, I am little bit confused, so sorry for this issue. Since this afternoon, my website, which uses your awesome tailwind-jit-cdn broke. I figured out that it was because Tailwind...
Hi Marcel et al, I tried using @apply within a css file and it had no effect. Is @apply catered for? https://codepen.io/jayenne/pen/BaWryVG I was specifically hoping to use it within...
Hi! Thanks for this amazing script. I am reading in your site the next: https://beyondco.de/blog/tailwind-jit-compiler-via-cdn _"Of course all of the processing happens on the client side. No HTML is sent...