How to add Vue to existing Laravel Docker app – Phpmyadmin
I have a simple, working Laravel app which uses Docker and I am trying to add Vue. Here is my docker-compose.yml: version: '3.1' services: ### THIS IS WHAT I ADDED # Frontend service frontend: image: node:current-alpine build: ./sandbox container_name: my_app_frontend…