12 lines
234 B
TypeScript
12 lines
234 B
TypeScript
import type { NextConfig } from 'next'
|
|
import path from 'path'
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
sassOptions: {
|
|
includePaths: [path.join(__dirname, './src/styles')],
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|