Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 1.49 KB

File metadata and controls

29 lines (18 loc) · 1.49 KB

Shallow Routing Example

With Shallow Routing, we can change the URL without running data fetching methods (like getStaticProps and getServerSideProps) again.

We do this by passing the shallow: true option to Router.push or Router.replace.

Deploy your own

Deploy the example using Vercel or preview live with StackBlitz

Deploy with Vercel

How to use

Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:

npx create-next-app --example with-shallow-routing with-shallow-routing-app
yarn create next-app --example with-shallow-routing with-shallow-routing-app
pnpm create next-app --example with-shallow-routing with-shallow-routing-app

Deploy it to the cloud with Vercel (Documentation).