If you're modifying a build project directly (the compiled/dist folder from npm run build)
, those changes might not reflect the way you expect without rebuilding the project.
Try to Disable or clear the build cache by modifying the nuxt.config.js file.
build: {
cache: false
}
Nuxt.js uses an internal build cache to optimize performance; sometimes, stale files can persist.