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