-
Hi everyone, I am starting to learn programming with next and have a basic question. Using the example from next.js tutorial page, I do run build and then run start, I am not able to see any changes appear in the browser after I edit the html file. All is fine when I use the development server Is there anything special I need to do in order to make changes appear in the browser or is this expected behaviour? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
It's possible you're running the static web server and not the development server. You need to run |
Beta Was this translation helpful? Give feedback.
It's possible you're running the static web server and not the development server.
You need to run
npm run dev
to see changes. See https://nextjs.org/learn/basics/create-nextjs-app/setup