Перейти к содержимому

SCSS

Окно терминала
pnpm add -D sass-embedded
next.config.ts
const nextConfig = {
/* config options here */
sassOptions: {
implementation: "sass-embedded",
silenceDeprecations: ["legacy-js-api"],
},
};
vite.config.ts
export default defineConfig({
/* config options here */
css: {
preprocessorOptions: {
sass: {
api: "modern-compiler",
},
},
},
});