new-front/next.config.js

11 lines
214 B
JavaScript
Raw Permalink Normal View History

2023-07-28 17:05:39 +03:00
/** @type {import('next').NextConfig} */
2023-08-03 16:04:15 +03:00
const path = require('path')
2023-07-28 17:05:39 +03:00
const nextConfig = {}
2023-08-03 16:04:15 +03:00
module.exports = {
sassOptions: {
includePaths: [path.join(__dirname, 'styles')],
},
...nextConfig
}