next.js/test/integration/repeated-slashes/app/next.config.js
next.config.js17 lines319 B
module.exports = {
  redirects() {
    return [
      {
        source: '/redirect-forward-slashes',
        destination: '/test//google.com',
        permanent: false,
      },
      {
        source: '/redirect-back-slashes',
        destination: '/test\\/google.com',
        permanent: false,
      },
    ]
  },
}
Quest for Codev2.0.0
/
SIGN IN