DEV Community

Discussion on: How to include .scss file into HTML?

Collapse
 
adam_cyclones profile image
Adam Crockett 🌀 • Edited

Hello, typically we don't "link" scss files directly to html documents. We live in an age where you write code in scss then transform it into CSS to be "linked". To do this, install sass CLI and follow the instructions to compile (compile means to transform) scss files, you can even do this as you change your scss files using watch mode.

To see this in action, try a live web version sassmeister.com/

A vscode plugin helps but it's not scalablenor how it is meant to be.

Collapse
 
praveenat profile image
Praveena Thavarajah

Thank you so much.