Updated 2020/01/27, GitHub link for the Sapper template is added below 🎉
I've been using Tailwind since its early days and it is a complete life c...
For further actions, you may consider blocking this person and/or reporting abuse
Great solution! One thing that i'm still struggling with, i can't seem to use regular classes in my svelte files like inside _layout.svelte. Any idea how to get this working without having to rerun npm run dev every time?
<div class="bg-red-200">...</div>
. It works if i rerun sapper dev. If i use @apply inside tag it works fine. Btw i addedI'm not sure why it is happening. I will check this issue when I create the sapper template.
I faced the same problem but fixed it with the following change.
Change line12 in postcss.config.js
from : const production = !process.env.ROLLUP_WATCH
to : const production = process.env.NODE_ENV !=='development'
Thanks for the information! In fact, using
process.env.NODE_ENV
in both setups would be better. However sinceprocess.env.ROLLUP_WATCH
is used to determine mode inrollup.config.js
, I wanted to be consistent with it. I've changed it toprocess.env.NODE_ENV
in Sapper template.Thanks for sharing that. I'm having issues with responsive classes such as
sm:block
. Using it throws an error saying that class doesn't exist. Are others able to use responsive classes with the approach explained in this article?Hi Mike,
Thanks for your comment. Unfortunately I couldn't reproduce this issue. But it can be caused by one of following reasons:
Purgess
config. You can refer to tailwindcss.com/docs/controlling-f... for correct usage.responsive
variant may be disabled in your tailwind config. You can solve it using tailwindcss.com/docs/display#respo...Thanks for your response. I cloned your repo and changed
App.svelte
's style to the following:This throws the same error I see in my project:
Are you able to use responsive classes such as
md:text-red-200
?I'm afraid it is a limitation of
tailwindcss
. It cannot@apply
variants directly. You can use it directly or find a workaround at tailwindcss.com/docs/functions-and...Thank you, that helped fix the issue.
@screen
and regular Tailwind utility classes works as documented.Thanks for sharing. I ran into a small issue where the production flag in the postcss config is always false and therefore purgecss is not invoked. The NODE_ENV is "development" even when running
npm run build
in my case. I am on windows and I am resolving this by changing the build script toset NODE_ENV=production && sapper build --legacy
. With that purgecss is invoked and everything is fabulous, thanks again.Same for me too. I didn't mention that because I couldn't find any official information whether it is an expected behavior or not. Thank you for mentioning.
This still happens even though I'm using
set NODE_ENV=production && sapper export --legacy
I find this super weird. Not sure what to do at all.The only way for me to avoid having all the classes in production is to use
purgecss
in both dev and prod. What a bummerWhat about?
You just solve a whole day of headache. I could kiss you!
I had to add a few bolts to make it work fully for me:
/html/
and/body/
to thewhitelistPatterns
(purgecss remove style tohtml
orbody
for some reason)emitCss: true
to thesvelte-loader
options when using webpack (allow me to use postcss syntaxe in svelte component)Thank you! I've updated the template according to your comments. Issue with
html
andbody
was happening becauseindex.html
is inpublic
folder. Purgecss config now checks every folder under project directory.Thanks for making these templates. I noticed after switching the sapper template to typescript with
node scripts/setupTypeScriptRollup.js
,Tailwind stopped working. The TS script creates some conflicts in rollup.config.js. They are easy to fix though.preprocess: sveltePreprocess()
lines that got addedI am brand new to Svelte, so might have something wrong, but this seemed to both get me TypeScript and Tailwind.
Thank you Matt! I've noticed this issue.
scripts/setupTypeScriptRollup.js
does not check if there is an existingsveltePreprocess
. So it results with a silent failure. Your fix is correct. I am going to examine the script deeper to find a solution.Thanks a lot for this wonderful article! Much appreciated!
I included it in Sapper by following exactly your description and then, instead of importing and including it in
src/App.svelte
, I just included it insrc/routes/_layout.svelte
. This way it should be included in all pages rendered by Sapper.Works like a charm and, as you mentioned, no additional workflow side-by-side with Sapper/Svelte.
Thanks man!
Ahh, simply.
This is great! Thank you!
Note:
If anyone facing css linting warning in
@tailwind
keyword, just addtype="text/postcss"
.Thank you so much for sharing this!
Got my build time down from 2:20 to just 19 seconds!
One note: noticing that my dev builds are slower than my production ones, i found that (at least for me) always executing purgecss gave me even better timings: 8 seconds!
i.e. replaced
...(production ? [purgecss] : []
with
purgecss
Thank you for sharing your results! Glad to help you out.
I think it worths to disable
Purgecss
in development. I frequently use DevTools to add/remove some styles to get an instant preview. Therefore, I can sacrifice some seconds for better development experience 🙂This doesn't seem to work for adding custom utilities: tailwindcss.com/docs/adding-new-ut...
If I try to add a new utility class, e.g.:
and try to use it with
@apply
, then I see something like the following:i think this is great! i made a recipe blog based on the sapper at master-tailwind method you mentioned above. i would like to try this method instead. do you have any plans on coming out with sapper-tailwind template on github? i can't figure out which goes into the server and which into client configs as you said. i'm a noob with those sort of things and more of a UI/UX guy. thank you for this! i'll try it out on a svelte project. cheers!
Thanks for your reply. I'm planning to create the sapper version soon.
Great article! I'm also using
.prettierrc.json
and.eslintrc.json
from this article.thank you so much for this! working perfectly...
Thank you!! I found the previous Tailwind implementation a bit lackluster, I'm excited to give it a try again!
A better approach indeed!
Any workaround to make it work with svelte-vscode?
Thanks so much for sharing!! Have you done or are you aware of any public recipe which used this svelte-tw-template?
This doesn't remove unused tailwindcss in dev mode but should remove it when building, right?
It's just a minor annoyance, but since I've made those changes, the bundle.js.map file gets send twice on every request. Don't know why really. Everything else seems to be working great tho. :)
thank you! this is a lot of help!
everything works fine but important modifier like !bg-red-100 doesn't work.why and how can i fix it?
Something is wrong with your sapper-template. When exporting, builds are 2 or 3 megs because the extra Tailwind CSS is not getting purged.
Need extra config now, Tailwind added purgecss. tailwindcss.com/docs/controlling-f...