跳到主要内容

sassOptions

sassOptions 允许你配置 Sass 编译器。

next.config.ts
import type { NextConfig } from 'next'

const sassOptions = {
additionalData: `
$var: red;
`,
}

const nextConfig: NextConfig = {
sassOptions: {
...sassOptions,
implementation: 'sass-embedded',
},
}

export default nextConfig

提示:除了 implementation 之外,sassOptions 没有类型定义,因为 Next.js 不维护其他可能的属性。