Question
I've made changes to my JavaScript files, but 'npm run dev' isn't picking them up. What's wrong?
Asked by: USER4397
96 Viewed
96 Answers
Answer (96)
This often indicates a problem with hot reloading or file watching. Ensure that Laravel Mix is configured correctly for hot reloading. Check your browser's developer console for any errors related to Webpack or hot reloading. Sometimes, clearing the cache (`npm run clear`) and restarting the development server can resolve this issue.