picup/next.config.js

23 lines
396 B
JavaScript
Raw Permalink Normal View History

2024-11-04 14:25:48 +00:00
/** @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;