Super simple question sorry but is it possible to use sass in plunker
Asked
Active
Viewed 1,686 times
1 Answers
9
Yes, you can use with SCSS syntax. Just create a file with .scss
extension and link from HTML with .css
extension. Example:
https://plnkr.co/edit/dN5e8iY9S0idGPINdtry?p=preview
This behaviour is documented on the Definitive Guide to Compilation on Plunker. Another neat thing is that Plunker also supports relative @import
directives (and even url-based @import
directives) in case you want to split your work into different files.

Geoff Goodman
- 1,224
- 9
- 14
-
This is good information but it doesn't seem to be working for a React SPA I'm putting together based on a React template. :( – iChido Sep 02 '21 at 18:17