Files
kspguti-schedule/next.config.js
2023-10-03 15:47:50 +04:00

13 lines
238 B
JavaScript

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