rsnext/test/integration/scss-fixtures/basic-module-include-paths/next.config.js
JJ Kasper ea7c1e1dcf
Add support for SCSS options (#11063)
* Add support for SCSS includePaths

* Support sassOptions instead of just includePaths

Co-authored-by: Tim Neutkens <timneutkens@me.com>
Co-authored-by: Joe Haddad <joe.haddad@zeit.co>
2020-03-16 10:55:16 +01:00

9 lines
154 B
JavaScript

const path = require('path')
module.exports = {
experimental: {
sassOptions: {
includePaths: [path.join(__dirname, 'styles')],
},
},
}