Skip to content

Next.js

Marie-Louise edited this page Jan 22, 2019 · 37 revisions

Learning Next.js using this tutorial :

Getting started with Next.js

Client-Side History Support

when you click back, usually this is handled by next/linkinstead of being handled in the usual way location.history

Styling a component

a style={{ fontSize: 20 }}

<Link href="/about">
  <a style={{ fontSize: 20 }}>About Page</a>
</Link>

Clone this wiki locally