Fixed next.config.js

This commit is contained in:
VityaSchel
2023-10-02 20:34:07 +04:00
parent ce82be9530
commit b3f9114ccd

View File

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