Skip to content

Instantly share code, notes, and snippets.

@akellbl4
Created June 9, 2021 06:13
Show Gist options
  • Save akellbl4/bccfe768a706db75323930b8a3bdfe72 to your computer and use it in GitHub Desktop.
Save akellbl4/bccfe768a706db75323930b8a3bdfe72 to your computer and use it in GitHub Desktop.
// lib/router.js
import NextRouter from 'next/router'
function push(url, opts) {
return NextRouter.push(url, null, opts)
}
const Router = {
...NextRouter,
push,
}
export default Router
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment