Example repository for Vue.js development with Laravel Mix.
You can use it on your local env with Node and Yarn, or you can use it with Docker!
yarn hot
: Web server with hot reload onhttp://localhost:8080/
.yarn dev
: Build for development ondist
folder.yarn prod
: Build for production ondist
folder.yarn lint
: Lint your code with ESlint.
For Docker, we use fwd to help us with the commands.
./fwd hot
: Web server with hot reload onhttp://localhost:8080/
../fwd yarn *
: Use Yarn inside Docker../fwd npm *
: Use npm inside Docker../fwd node *
: Use Node inside Docker.
Tip: add alias fwd=./fwd
to help you with commands.
MIT