Open jbjanot opened 7 months ago
Hi! Thank you so much for this plugins :) I am trying to use node-sass-glob-importer.
node-sass-glob-importer
I got this following error that tells me that the plugin might not be running on build: sass.Exception [Error]: Can't find stylesheet to import.
sass.Exception [Error]: Can't find stylesheet to import.
Here is a minimum setup I am trying to run:
import * as sass from 'sass'; import globImporter from 'node-sass-glob-importer'; sass.compile( './path/to/src/styles.scss', { importer: globImporter(), } );
And in my css file:
@import "./**/__*.scss";
Is there something I am doing wrong? Thank you for your time and help! 🙏🏻
Hi! Thank you so much for this plugins :) I am trying to use
node-sass-glob-importer
.I got this following error that tells me that the plugin might not be running on build:
sass.Exception [Error]: Can't find stylesheet to import.
Here is a minimum setup I am trying to run:
And in my css file:
Is there something I am doing wrong? Thank you for your time and help! 🙏🏻