23 lines
396 B
JavaScript
23 lines
396 B
JavaScript
/** @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;
|