new-front/next.config.js
2023-08-03 16:04:15 +03:00

11 lines
214 B
JavaScript

/** @type {import('next').NextConfig} */
const path = require('path')
const nextConfig = {}
module.exports = {
sassOptions: {
includePaths: [path.join(__dirname, 'styles')],
},
...nextConfig
}