I have default project setup getting from nuxt3
document. I'm talk about this starting point : npx nuxi init <project-name>
.
The project is up and running on my local machine. Unfortunately output is not up to date in the devtools. For example I made changes on JS part. But I can't see that changes on devtools and it's not impact the result in browser. When I try to clear cache the updated code is working until I do normal refresh on browser. It's so weird and annoying. How do I disable caching. I guess it's still using app.vue
. But I removed it.
Is anyone else have an idea ?
Edit:
I added --force
tag to dev script like this;
"dev": "nuxt dev --force",
It didn't change anything.