I'm currently working on creating my own WordPress theme and utilizing SASS to write the CSS. I want the final compiled CSS to be minified, so I have a question:
If I set SASS to compile the CSS in my style.css
file (located in the main theme folder), will WordPress be able to interpret it without any issues?
Alternatively, should I leave the style.css
file empty and compile the CSS in a separate file within a CSS folder, such as css/main.css
?