Global web icon
stackoverflow.com
https://stackoverflow.com/questions/75674866/addin…
Adding Favicon to NextJs App router application
Adding Favicon to NextJs App router application Asked 2 years, 9 months ago Modified 1 year, 5 months ago Viewed 80k times
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/76408504/nextj…
Nextjs 13 is insanely slow in dev environment - Stack Overflow
I recently switched to Nextjs 13 and I noticed it's insanely slow when I run my app on localhost via npm run dev Pages even take 10 seconds and sometimes even longer to load, how it is possible?
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/79119287/prope…
Proper eslint configuration under NextJS 15 - Stack Overflow
Proper eslint configuration under NextJS 15 Asked 1 year, 1 month ago Modified 7 months ago Viewed 10k times
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/76246886/how-t…
How to read request body and query params in next 13's API with app ...
2 In NextJS 13, with route.ts File Conventions in app dir, we can read query params and request's body with this:
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/43862600/how-c…
How can I get (query string) parameters from the URL in Next.js?
router.query only works in ssr. But sometimes a url params passed to the next page but router.query cannot get this param, you have to reload this page to use rotuer.query to get his param. In this scenario, use router.asPath or window?.location.search to get the params.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/71847778/why-i…
Why is my NextJS component rendering twice? - Stack Overflow
Why is my NextJS component rendering twice? Asked 3 years, 8 months ago Modified 9 months ago Viewed 68k times
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/68254828/runni…
running a Development server on NextJS (on the network)
Recently I started learning NextJS and when I run the command npm run dev, I only see that it starts the development server on the local machine, not on the network. Is there a way to make it work just like it did with pure reactjs?
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/74185594/how-t…
How to deploy a Next.js app on HTTPS (SSL connection) with Docker?
The following steps explain how to set up a multi-container Docker Compose environment where NGINX is used as a reverse proxy in front of the Next.js application to handle the SSL connection (and offer an HTTPS URI). Step 1 - Dockerize Next.js application Luckily, this is part of the Next.js official docs themselves. The key step is to copy this Dockerfile to the Next.js repo you are working ...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/59462614/how-t…
How to use different .env files with nextjs? - Stack Overflow
23 You can have different .env files in nextjs with following two ways: 1. Using env-cmd package Provide the path to your environment file in the scripts like:
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/57408007/nextj…
nextjs - next build with NODE_ENV=development - Stack Overflow
Well this is Mid-2023 and I wish there was a straightforward solution. Here's what works for me coming from React/vite to Nextjs with 2 different environments file. Using Rodrigo's answer I first renamed .env.development to .env.dev .env.production to .env.prod so that next.js doesn't pick them automatically during builds but they stay on local ...