picup/next.config.js
2024-11-04 23:25:48 +09:00

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;