Files
kspguti-schedule/next.config.js
2023-10-01 21:56:32 +04:00

12 lines
200 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
redirects: {
permanent: false,
destination: '/ps7',
source: '/'
}
}
module.exports = nextConfig