DEV Community

Discussion on: A simpler way to add TailwindCSS to your Svelte project

Collapse
 
bluephoen1x profile image
bluephoen1x

The run-p keyword used in the scripts in the package.json will lead port 5000 of localhost could not be used and jump to another random port. I change it to run-s, now it is OK. What is the reason of this?

Collapse
 
mellson profile image
Anders Bech Mellson

I had the same problem and changed my dev script to: "dev": "run-p autobuild watch:tailwind" - which seems to work fine for me