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
After setting a breakpoint, it appears the offending code is here. This block combines all the stylesheets into one and does not consider that @use statements must appear in the file's header.
// Combine all stylesheets
let scss = ''
for (const id in styles) {
scss += styles[id] || ''
}
The text was updated successfully, but these errors were encountered:
I am attempting to add the autoprefixer plugin, but I get a build error, "@use rules must be written before any other rules.".
Here is my rollup config:
After setting a breakpoint, it appears the offending code is here. This block combines all the stylesheets into one and does not consider that @use statements must appear in the file's header.
The text was updated successfully, but these errors were encountered: