Hello, i got error when add this to next.config.js
Said this :
TypeError: Cannot read property 'toString' of undefined
at /Applications/XAMPP/xamppfiles/htdocs/esteh/academy-landing/next.config.js:9:21
Web & Mobile app developer, SaaS Enthusiast. Love programming, design, and business. Share what I learn about launching SaaS projects and building a freelance business on my vpilip.com
Hello, i got error when add this to next.config.js
Said this :
TypeError: Cannot read property 'toString' of undefined
at /Applications/XAMPP/xamppfiles/htdocs/esteh/academy-landing/next.config.js:9:21
Why is there are error?
thanks
This happens after the next.js update. I recommend using the package
@webdeb/next-styles
. It makes using scoped *.scss files as simple as in CRA.The example of the
next.config.js
using this package:I hope this will help you :)
do i still need to run this command
"npm install --save @zeit/next-sass node-sass"
after installing this package
According to nextjs.org/docs/basic-features/bui... you just need to run
npm install sass / yarn add sass / pnpm add sass
thanks