11 lines
219 B
JavaScript
11 lines
219 B
JavaScript
|
const path = require("path")
|
||
|
/** @type {import('next').NextConfig} */
|
||
|
const nextConfig = {
|
||
|
reactStrictMode: true,
|
||
|
sassOptions: {
|
||
|
includePaths: [path.join(__dirname, "styles")]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = nextConfig
|