11 lines
203 B
JavaScript
11 lines
203 B
JavaScript
import path from 'node:path'
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
sassOptions: {
|
|
includePaths: [path.join(path.resolve('.'), 'styles')],
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|