Anyone doing development with meteor and SCSS. How do you get started, there are no packages for meteorite that i could find that compile .scss files into a specific folder?
相关问题
- A good way to define default rendering templates i
- How to load font from @font-face with Parcel?
- How to include a safari only style in scss ? [dupl
- Jest and SCSS variables
- How to integrate meteor's velocity tests with
相关文章
- How can a browser know the scss files?
- External dependencies (like bootstrap) in Meteor
- How to override Bootstrap mixin without modifying
- how to properly configure meteor to work with node
- Sass @use not loading partial
- Webpack sass loader does not recognize global vari
- Can meteor mongo driver handle $each and $position
- Meteor blocking clarification
Have you tried just compiling the sass/scss into css locally during development? Meteor shouldn't complain if you have your config.rb inside of the client folder along with a sass folder and compiled css folder. It should just automatically read the css per norm. Running
$ compass watch
inside of this client folder where the config.rb resides is an easy way to automate this css compilation. Telescope is a great sample Meteor app that uses sass in this fashion.--Alex
Just to get this posted as an answer (was posted as comment); bookcasey posted this sample project as well: https://github.com/gdumitrescu/scoreboard which provides some guidance on how to use sass/scss. Hope it helps.