UNPKG
@garcia-enterprise/gatsby-plugin-sass-resources
Version:
latest (4.0.2)
4.0.2
4.0.1
4.0.0
SASS resources (e.g. variables, mixins etc.) plugin for Gatsby
@garcia-enterprise/gatsby-plugin-sass-resources
/
gatsby-node.js
15 lines
•
281 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
exports.onCreateWebpackConfig = ({ actions }, options) => { actions.
setWebpackConfig
({
module
: {
rules
: [{
test
: /\.s[ac]ss$/,
loader
:
"sass-resources-loader"
,
options
: {
resources
: options.resources } }] } }); };