https://github.com/csells/min-pwa
Minimal Progressive Web App (PWA) that passes a Google Lighthouse audit
https://github.com/csells/min-pwa
Last synced: 3 months ago
JSON representation
Minimal Progressive Web App (PWA) that passes a Google Lighthouse audit
- Host: GitHub
- URL: https://github.com/csells/min-pwa
- Owner: csells
- Created: 2017-10-23T14:19:04.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-05T02:26:40.000Z (over 7 years ago)
- Last Synced: 2024-12-31T20:16:33.116Z (4 months ago)
- Language: HTML
- Homepage:
- Size: 45.9 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# min-pwa
Minimal Progressive Web APp (PWA) that passes the Google Lighthouse audit.## [master branch](https://github.com/csells/min-pwa/tree/master)
Minimal PWA without any frameworks.## [bootstrap4 branch](https://github.com/csells/min-pwa/tree/bootstrap4)
Minimal PWA with a simple responsive menu using Boostrap 4 and very simple template-based routing.## [bootstrap4-vue branch](https://github.com/csells/min-pwa/tree/bootstrap4-vue)
Minimal PWA with a simple responsive menu using Boostrap 4 Vue 2.x and very simple component-based routing.## Routing
The solutions that contain routing assume a web server configured to route 404 errors to /index.html to allow for client-side routing.
For example, if you're using [local web server](https://github.com/lwsjs/local-web-server), then you'd start it like the following:```
$ ws --spa index.html
```