webpack-sass-glob-importer
v1.0.1
Published
A Webpack loader that allows glob importing in SCSS files
Downloads
42
Maintainers
Readme
webpack-sass-glob-importer
A custom loader for Webpack that allows glob import in Dart Sass.
Installation
npm install --save-dev webpack-sass-glob-importer
Then add the plugin to your webpack
config. For example:
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.scss$/i,
use: ["webpack-sass-glob-importer"],
},
],
},
};