Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/n8maninger/docker-vue-router

Docker image containing the necessary nginx configuration for vue-router history mode
https://github.com/n8maninger/docker-vue-router

docker-image dockerfile vue vue-router

Last synced: about 1 month ago
JSON representation

Docker image containing the necessary nginx configuration for vue-router history mode

Awesome Lists containing this project

README

        

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

Example:
```dockerfile
# 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
```