How to use Sass or Scss in a Meteor app?

Use Sass or scss in Meteor app

To use Sass or Scss file in Meteor
First of all you need to add scss or sass package in Meteor
Run this command first:
mrt add scss

Now create a scss file inside your stylesheet folder or anywhere you want to add Like
scss_style.scss
You can add a css style code to test like
h1{
color:red !important;
}

Now restart your app.
I hope it is working now.

But this will not work after 0.8 version of meteor

Please comment or share this post to inspire me :)




Comments