From b3f9114ccdd29839c09ceb31ad3a1e9625b7ba2e Mon Sep 17 00:00:00 2001 From: VityaSchel <59040542+VityaSchel@users.noreply.github.com> Date: Mon, 2 Oct 2023 20:34:07 +0400 Subject: [PATCH] Fixed next.config.js --- next.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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