next.js/test/e2e/app-dir/navigation/next.config.js
next.config.js16 lines332 B
/** @type {import('next').NextConfig} */
module.exports = {
  redirects: () => {
    return [
      {
        source: '/redirect/a',
        destination: '/redirect-dest',
        permanent: false,
      },
    ]
  },
  // scroll position can be finicky with the
  // indicators showing so hide by default
  devIndicators: false,
}
Quest for Codev2.0.0
/
SIGN IN