Do i need to npm run build when vue application deployed to server?
How do you guys usually do when going to deploy vue application to production server? Do i need to npm run build every time when changes made? If running npm run build, means that my apps will down until everything compiled?
Is there a way to mitigate this happening when in production server? Thanks!
I'm also looking for a solution as well. @jeffxy@kuns25 did you find anything? :)
EDIT:
I solved by setting the public folder to a different path (/www) and in the deployment script I just copy everything from /dist after the build
cp -a dist/. www/
š