diff --git a/next.config.js b/next.config.js index 4bbd881..2a23b1d 100644 --- a/next.config.js +++ b/next.config.js @@ -1,11 +1,11 @@ /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, - redirects: async () => ({ + redirects: async () => [{ permanent: false, destination: '/ps7', source: '/' - }) + }] } module.exports = nextConfig