Home / Function/ redirects() — supabase Function Reference

redirects() — supabase Function Reference

Architecture documentation for the redirects() function in next.config.mjs from the supabase codebase.

Entity Profile

Relationship Graph

Source Code

apps/cms/next.config.mjs lines 3–20

const redirects = async () => {
  const internetExplorerRedirect = {
    destination: '/ie-incompatible.html',
    has: [
      {
        type: 'header',
        key: 'user-agent',
        value: '(.*Trident.*)', // all ie browsers
      },
    ],
    permanent: false,
    source: '/:path((?!ie-incompatible.html$).*)', // all pages except the incompatibility page
  }

  const redirects = [internetExplorerRedirect]

  return redirects
}

Subdomains

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free