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
Been wracking my brains wondering why the plug-in would return the "file.less was modified, but didn't change any CSS files" error when entering the parent less file (with the @import calls) in the "Include Files By Path" field.
Turns out this file MUST use double-quotes and not single-quotes. For example, this would fail:
@import 'colours.less';
... while this would work ...
@import "colours.less";
Hope this can be fixed to help people who may be caught in this "didn't change any css files" error circle :)
The text was updated successfully, but these errors were encountered:
Been wracking my brains wondering why the plug-in would return the "file.less was modified, but didn't change any CSS files" error when entering the parent less file (with the @import calls) in the "Include Files By Path" field.
Turns out this file MUST use double-quotes and not single-quotes. For example, this would fail:
... while this would work ...
Hope this can be fixed to help people who may be caught in this "didn't change any css files" error circle :)
The text was updated successfully, but these errors were encountered: