You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Import your main scss file: <can-import from="myApp/styles.scss!" />
Create another scss file that you wan't to import. (for example normalize.scss)
In styles.scss add @import "_normalize.scss";
Current result: I have all "imports" as plain text in the <head> stylesheet.
Expected result: I expect to have "compiled" content of all the files that I imported into styles.scss
The text was updated successfully, but these errors were encountered:
Sass
@import
directive doesn't work for now.Steps to reproduce:
<can-import from="myApp/styles.scss!" />
scss
file that you wan't to import. (for examplenormalize.scss
)styles.scss
add@import "_normalize.scss";
Current result: I have all "imports" as plain text in the
<head>
stylesheet.Expected result: I expect to have "compiled" content of all the files that I imported into
styles.scss
The text was updated successfully, but these errors were encountered: