Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 682 Bytes

routes-must-be-array.md

File metadata and controls

42 lines (34 loc) · 682 Bytes

Custom Routes must return an array

Why This Error Occurred

When defining custom routes an array wasn't returned from either headers, rewrites, or redirects.

Possible Ways to Fix It

Make sure to return an array that contains the routes.

Before

// next.config.js
module.exports = {
  experimental: {
    async rewrites() {
      return {
        source: '/feedback',
        destination: '/feedback/general',
      }
    },
  },
}

After

module.exports = {
  experimental: {
    async rewrites() {
      return [
        {
          source: '/feedback',
          destination: '/feedback/general',
        },
      ]
    },
  },
}