DEV Community

[Update] Using Svelte with Tailwindcss - A better approach

sarioglu on November 04, 2019

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...
Collapse
 
filip_uzunovic profile image
Case09 • Edited

Great solution! One thing that i'm still struggling with, i can't seem to use regular classes in my svelte files like <div class="bg-red-200">...</div>. It works if i rerun sapper dev. If i use @apply inside tag it works fine. Btw i added inside _layout.svelte. Any idea how to get this working without having to rerun npm run dev every time?

Collapse
 
sarioglu profile image
sarioglu

I'm not sure why it is happening. I will check this issue when I create the sapper template.

Collapse
 
srinivasarajui profile image
Srini Raju • Edited

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'

Thread Thread
 
sarioglu profile image
sarioglu

Thanks for the information! In fact, using process.env.NODE_ENV in both setups would be better. However since process.env.ROLLUP_WATCH is used to determine mode in rollup.config.js, I wanted to be consistent with it. I've changed it to process.env.NODE_ENV in Sapper template.

Collapse
 
mikenikles profile image
Mike

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?

Collapse
 
sarioglu profile image
sarioglu

Hi Mike,
Thanks for your comment. Unfortunately I couldn't reproduce this issue. But it can be caused by one of following reasons:

Collapse
 
mikenikles profile image
Mike

Thanks for your response. I cloned your repo and changed App.svelte's style to the following:

h1 {
  @apply bg-black text-white md:text-red-200;
}
Enter fullscreen mode Exit fullscreen mode

This throws the same error I see in my project:

[!] (plugin svelte) CssSyntaxError: /home/mikenikles/dev/github/sarioglu/svelte-tailwindcss-template/src/App.svelte:3:3: `@apply` cannot be used with `.md\:text-red-200` because `.md\:text-red-200` either cannot be found, or its actual definition includes a pseudo-selector like :hover, :active, etc. If you're sure that `.md\:text-red-200` exists, make sure that any `@import` statements are being properly processed *before* Tailwind CSS sees your CSS, as `@apply` can only be used for classes in the same CSS tree.
src/App.svelte
Enter fullscreen mode Exit fullscreen mode

Are you able to use responsive classes such as md:text-red-200?

Thread Thread
 
sarioglu profile image
sarioglu

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...

Thread Thread
 
mikenikles profile image
Mike

Thank you, that helped fix the issue. @screen and regular Tailwind utility classes works as documented.

Collapse
 
pgvr profile image
Patrick Göler von Ravensburg

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 to set NODE_ENV=production && sapper build --legacy. With that purgecss is invoked and everything is fabulous, thanks again.

Collapse
 
sarioglu profile image
sarioglu

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.

Collapse
 
fillipvt profile image
fillipvt

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 bummer

Thread Thread
 
danawoodman profile image
Dana Woodman

What about?

NODE_ENV=production sapper export --legacy
Collapse
 
gmartigny profile image
Guillaume Martigny

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:

Collapse
 
sarioglu profile image
sarioglu

Thank you! I've updated the template according to your comments. Issue with html and body was happening because index.html is in public folder. Purgecss config now checks every folder under project directory.

Collapse
 
city41 profile image
Matt Greer

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.

  1. remove the extra sveltePreprocess import
  2. in both client and server, in the svelte() call, remove the extra preprocess: sveltePreprocess() lines that got added

I am brand new to Svelte, so might have something wrong, but this seemed to both get me TypeScript and Tailwind.

Collapse
 
sarioglu profile image
sarioglu

Thank you Matt! I've noticed this issue. scripts/setupTypeScriptRollup.js does not check if there is an existing sveltePreprocess. So it results with a silent failure. Your fix is correct. I am going to examine the script deeper to find a solution.

Collapse
 
taffit profile image
taffit

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 in src/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!

Collapse
 
mustofa profile image
Habib Mustofa

Ahh, simply.
This is great! Thank you!

Note:
If anyone facing css linting warning in @tailwind keyword, just add type="text/postcss".

<style type="text/postcss" global>
  @tailwind base;
  @tailwind components;
  @tailwind utilities;
</style>
Collapse
 
ateammate profile image
Malte H

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

Collapse
 
sarioglu profile image
sarioglu

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 🙂

Collapse
 
mizzao profile image
Andrew Mao

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.:

  @layer utilities {
    .body-12-caps {
      @apply font-sans font-bold not-italic uppercase;
      font-size: 0.75rem /* 12px */;
      line-height: 1.125rem /* 18px */;
      letter-spacing: 0.1em;
    }
  }
Enter fullscreen mode Exit fullscreen mode

and try to use it with @apply, then I see something like the following:

`@apply` cannot be used with `.body-12-caps` because `.body-12-caps` either cannot be found, or its actual definition includes a pseudo-selector like :hover, :active, etc. If you're sure that `.body-12-caps` exists, make sure that any `@import` statements are being properly processed *before* Tailwind CSS sees your CSS, as `@apply` can only be used for classes in the same CSS tree.
Enter fullscreen mode Exit fullscreen mode
Collapse
 
claxxmoldii profile image
claxx moldii

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!

Collapse
 
sarioglu profile image
sarioglu

Thanks for your reply. I'm planning to create the sapper version soon.

Collapse
 
leonistor profile image
Leo Nistor

Great article! I'm also using .prettierrc.json and .eslintrc.json from this article.

Collapse
 
djnitehawk profile image
Dĵ ΝιΓΞΗΛψΚ

thank you so much for this! working perfectly...

Collapse
 
thompcd profile image
Corey Thompson

Thank you!! I found the previous Tailwind implementation a bit lackluster, I'm excited to give it a try again!

Collapse
 
tobius profile image
Toby Miller

A better approach indeed!

Collapse
 
jfdelarosa profile image
Juan Fernando

Any workaround to make it work with svelte-vscode?

Collapse
 
josfk profile image
josfk

Thanks so much for sharing!! Have you done or are you aware of any public recipe which used this svelte-tw-template?

Collapse
 
dydxgit profile image
Muhammad Taha

This doesn't remove unused tailwindcss in dev mode but should remove it when building, right?

Collapse
 
dustypaws profile image
dustypaws

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. :)

Collapse
 
claxxmoldii profile image
claxx moldii

thank you! this is a lot of help!

Collapse
 
tfmaher profile image
Tahmid Faisal

everything works fine but important modifier like !bg-red-100 doesn't work.why and how can i fix it?

Collapse
 
wildpow profile image
Aaron Wilder • Edited

Something is wrong with your sapper-template. When exporting, builds are 2 or 3 megs because the extra Tailwind CSS is not getting purged.

Collapse
 
leandropelegrini profile image
Leandro Pelegrini

Need extra config now, Tailwind added purgecss. tailwindcss.com/docs/controlling-f...