Courses

Vue.js 3 + Laravel 9 SPA: CRUD with Auth

npm run watch: Re-Compiling JS and Tailwind

avatar

If you are getting an error running npm run watch like so

npm ERR! Missing script: "watch"

you can add this script command in package.json under scripts

    "scripts": {
				...
        "watch": "vite build --watch"
    },
👍 1