Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 249 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 249 Bytes

A minimal static web server to serve Vue applications with history-mode

Example:

# build
FROM node:lts AS build

WORKDIR /app

COPY . .
RUN npm install && npm run build

FROM n8maninger/vue-router

COPY --from=build /app/dist /www