Установил next ts приложение, хочу использовать sass стили
выполнил
yarn add sass
в next config прописал
const path = require('node:path');
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
sassOptions: {
includePaths: [path.join(__dirname, 'styles')],
},
};
module.exports = nextConfig
папки
импортирую в компоненте
import styles from '../styles/Index.module.scss'
Выходит ошибка
error - unhandledRejection: Error: Cannot find module '/home/nuruddin/apps/arabic/client/arabic/node_modules/next/dist/compiled/sass-loader/fibers.js'
at webpackEmptyContext (/home/nuruddin/apps/arabic/client/arabic/node_modules/next/dist/compiled/sass-loader/cjs.js:1:11235)
at getSassOptions (/home/nuruddin/apps/arabic/client/arabic/node_modules/next/dist/compiled/sass-loader/cjs.js:1:5586)