Arlton Lowry
Arlton Lowry

Reputation: 1

Organizing SCSS files in NextJS

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?

error

package.json

Upvotes: 0

Views: 358

Answers (1)

Tibi02
Tibi02

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

Related Questions