@import 'my-file' to resolve to my-file.sss? It's only working if I do @import 'my-file.sss'. If I omit the extension, I get this error:
Message:
ENOENT: no such file or directory, open '/Users/jmeas/WebDev/moolah/client-src/css/my-file.css'
Details:
errno: -2
code: ENOENT
syscall: open
path: /Users/jmeas/WebDev/moolah/client-src/css/my-file.css
fileName: /Users/jmeas/WebDev/moolah/client-src/css/index.sss
Stack:
Error: ENOENT: no such file or directory, open '/Users/jmeas/WebDev/moolah/client-src/css/my-file.css'
at Error (native)
If I turn off this plugin, PostCSS works exactly the same. Am I misconfiguring this, or something? 😕
If I use this plugin like so:
should I expect
@import 'my-file'
to resolve tomy-file.sss
? It's only working if I do@import 'my-file.sss'
. If I omit the extension, I get this error:If I turn off this plugin, PostCSS works exactly the same. Am I misconfiguring this, or something? 😕