fixes glob error - points to correct folder for Sass compilation
a quick fix:
The tasks gulp css
and gulp dev
were not working as the gulp-Sass
plugin was not pointing to the correct folder to compile.
Changed:
const SassInput = './scss/styles.scss';
To:
const SassInput = './assets/scss/styles.scss';
Edited by Stu Robson