JacobDorman
Results
2
comments of
JacobDorman
Check that there aren't any unicode characters in your sass. libsass adds `@charset "UTF-8";` to the css, which causes autoprefixer to output a broken sourcemap. _without @charset_ ``` { "version":...
Ahh, the plot thickens :) We might be dealing with multiple issues. @charset was definitely causing my problem. Removing the character fixes the sourcemaps. Test repo here: https://github.com/JacobDorman/libsass-autoprefixer-test/ I'll continue...