0

I am using node-fibers for webpack.config.js and I want to upgrade my Node version. Is there any replacement package that does what fibers does? Is my only option to refactor code at the moment?

webpack.config.js:

loader: 'sass-loader',
      options: {
        sourceMap : true,
        implementation: require('sass-embedded'),
        sassOptions: {
          fiber: require('fibers'),

Roh
  • 311
  • 1
  • 10
  • 1
    No, Node.js 16 or later is declared to be unsupported in the documentation: https://webpack.js.org/loaders/sass-loader/. I recommend reverting to using the default sass. – Richie Bendall Jun 06 '22 at 02:26
  • Could you clarify on reverting to default sass – Roh Jun 06 '22 at 02:37
  • 1
    Remove your custom configuration for `fiber` and `implementation`, and install the https://www.npmjs.com/package/sass package which is used by default. – Richie Bendall Jun 06 '22 at 02:39

0 Answers0