Skip to content

j3k2/sass-resources-loader-craco

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Craco sass-resources-loader

Forked from https://github.com/tilap/craco-sass-resources-loader

MIT License

This is a craco plugin to add sass-resources-loader with create-react-app version >= 2.

Installation

$ yarn add -D craco-sass-resources-loader

# OR

$ npm install craco-sass-resources-loader --save-dev

Usage

craco-sass-resources-loader expect a resources option containing a string or an array of string pointing the scss files your want to load before any scss/sass file.

const sassResourcesLoader = require('craco-sass-resources-loader');

module.exports = {
  plugins: [
    {
      plugin: sassResourcesLoader,
      options: {
        resources: './src/my-config-theme.scss',
      },
    },
  ],
}

You can load multiple scss resources files too:

const sassResourcesLoader = require('craco-sass-resources-loader');

module.exports = {
  plugins: [
    {
      plugin: sassResourcesLoader,
      options: {
        resources: [
          './src/my-config-theme.scss',
          './src/my-other-config-theme.scss'
        ],
      },
    },
  ],
}

About

Craco plugin for sass-resources-loader

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%