Running npm run dev starts two servers for me. The second stating that port 5000 is already used and it uses a random one.
I think the first is coming from the script start:dev and the second from autobuild. I guess start:dev is not required at all, because autobuild respectively rollup -c -w is already running sirv.
Running
npm run devstarts two servers for me. The second stating that port 5000 is already used and it uses a random one.I think the first is coming from the script
start:devand the second fromautobuild. I guessstart:devis not required at all, becauseautobuildrespectivelyrollup -c -wis already runningsirv.I think you're right. I changed the dev script to "run-p autobuild watch:tailwind" which works just fine
Alright, then I leave it like that and by the way thank you for the post!