Brave saves redirects permanently

localhost:3000 redirects to localhost:3000/blocks because of the nextjs code below and is now the default for all apps i run on localhost, it doesn’t happen in private mode and other browsers, I have already cleared localStorge, cache, cookies, session etc

  async redirects() {
    return [
      {
        source: "/",
        destination: "/blocks",
        permanent: true,
      },
    ];
  },

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.