/next-redirect

Redirect for next.js. Works on both the client and server

Primary LanguageJavaScript

Redirect

Redirect for next.js. Works on both the client and server

Usage

static async getInitialProps (ctx) {
	const [ err, course ] = await poss(loadCourse(ctx.query.course))
	if (err) return redirect(ctx, '/')
	return course
}

Installation

npm install next-redirect

License

MIT