Render Flow - SASS compilation to CSS
[Read .scss file] -> [Parse SASS syntax] -> [Resolve variables, nesting, mixins] -> [Generate CSS code] -> [Write .css file] -> [Browser loads CSS]
The browser does not read SASS directly. First, the SASS file is read and processed by a compiler that converts it into plain CSS. Then the browser loads the generated CSS to style the webpage.