Reputation: 1
I'm getting an error when I try to organize my SCSS files in seperate folders and import them into my style.scss file. I can't seem to find any documention on how to fix this. Any suggestions?
Upvotes: 0
Views: 358
Reputation: 697
You have to create a next.config.js
file in the root with the following content:
// next.config.js
const withSass = require('@zeit/next-sass')
module.exports = withSass()
Upvotes: 2