Blog

  • Access to Clipboard was confusing in the beginning but now we’ve got a much better API. Let's compare old and new approaches and look at best practices of where we can use it

  • When I joined June Homes they already used Next.js and getInitialProps for fetching data. I've noticed that there are no pages that are statically optimized. I decided to try to fix it and make the transition to modern fetching methods. Let's look at how to do so and what problems you can face

  • Does your project has a lot of static generated pages and all of the pages have shared data that is fetched from server side? It could cause spamming your server by many requests that are called by every page that should be generated. Let's take a look at how we can prevent that with NodeJS in front of Next.js on the build stage