Dockerized Vue app – hot reload does not work
Dockerized Vue app loads normally to the browser, when applying changes to the code are not reflected without refresh. Dockerfile FROM node:14-alpine # make the 'app' folder the current working directory WORKDIR /app # copy 'package.json' COPY package.json . #…