biotope / biotope-build

Biotope Build Framework
https://build.biotope.sh
MIT License
24 stars 10 forks source link

feat: 🎸 enable changing sass compiler via config #427

Closed luke-m closed 3 years ago

luke-m commented 3 years ago

This enables changing the SASS compiler by requiring it in a project's projectConfig.js. -->


module.exports = {
  sass: {
    options: {
      compiler: require('sass')
    }
  }
};