/** @type {import('next').NextConfig} */ const path = require('path'); const nextConfig = { reactStrictMode: false, sassOptions: { includePaths: [path.join(__dirname, 'styles')] } // async redirects() { // return [ // { // source: '/', // destination: '/login', // permanent: true // } // ] // } }; module.exports = nextConfig;