react-code-dataset
/
next.js
/docs
/01-app
/03-api-reference
/05-config
/01-next-config-js
/sassOptions.mdx
| title: sassOptions | |
| description: Configure Sass options. | |
| `sassOptions` allow you to configure the Sass compiler. | |
| ```ts filename="next.config.ts" switcher | |
| import type { NextConfig } from 'next' | |
| const sassOptions = { | |
| additionalData: ` | |
| $var: red; | |
| `, | |
| } | |
| const nextConfig: NextConfig = { | |
| sassOptions: { | |
| ...sassOptions, | |
| implementation: 'sass-embedded', | |
| }, | |
| } | |
| export default nextConfig | |
| ``` | |
| ```js filename="next.config.js" switcher | |
| /** @type {import('next').NextConfig} */ | |
| const sassOptions = { | |
| additionalData: ` | |
| $var: red; | |
| `, | |
| } | |
| const nextConfig = { | |
| sassOptions: { | |
| ...sassOptions, | |
| implementation: 'sass-embedded', | |
| }, | |
| } | |
| module.exports = nextConfig | |
| ``` | |
| > **Good to know:** `sassOptions` are not typed outside of `implementation` because Next.js does not maintain the other possible properties. | |