mirror of
https://github.com/johndoe6345789/snippet-pastebin.git
synced 2026-04-24 13:34:55 +00:00
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4.5) <aider@aider.chat>
13 lines
284 B
JavaScript
13 lines
284 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
sassOptions: {
|
|
includePaths: ['./src/styles'],
|
|
additionalData: `@use "m3-scss/material" as mat;`,
|
|
},
|
|
experimental: {
|
|
optimizePackageImports: ['@phosphor-icons/react'],
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|