Skip to content
  • Unlock Pro
  • Log in with GitHub
Solution
Submitted over 1 year ago

IP Address tracker NextJS Redux-Toolkit

next, redux-toolkit, typescript, tailwind-css
Francisco Borja Lobato•450
@franclobo
A solution to the IP Address Tracker challenge
View live sitePreview (opens in new tab)View codeCode (opens in new tab)

Solution retrospective


What are you most proud of, and what would you do differently next time?

I have to use dynamic imports to load the map component only when the user clicks the search button. This way, I can reduce the initial load time of the page.

import dynamic from 'next/dynamic';

const MapaComponent = dynamic(() => import('./_components/Mapa'), { ssr: false });
What challenges did you encounter, and how did you overcome them?

I encrypted the API_KEY using .env.local from NextJS

  • Declare enviroment variables - This helped me to declare environment variables in Next.js.
  • Creating de .env.local file - This helped me to create the .env.local file to store the environment variables.
Code
Loading...

Please log in to post a comment

Log in with GitHub

Community feedback

No feedback yet. Be the first to give feedback on Francisco Borja Lobato's solution.

Join our Discord community

Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!

Join our Discord

Stay up to datewith new challenges, featured solutions, selected articles, and our latest news

Frontend Mentor

  • Unlock Pro
  • Contact us
  • FAQs
  • Become a partner

Explore

  • Learning paths
  • Challenges
  • Solutions
  • Articles

Community

  • Discord
  • Guidelines

For companies

  • Hire developers
  • Train developers
© Frontend Mentor 2019 - 2025
  • Terms
  • Cookie Policy
  • Privacy Policy
  • License