Files
kspguti-schedule/next.config.js
2023-10-02 20:34:07 +04:00

12 lines
214 B
JavaScript

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