mirror of
https://github.com/a2nt/silverstripe-progressivewebapp.git
synced 2024-10-22 11:05:45 +02:00
20 lines
629 B
Markdown
20 lines
629 B
Markdown
# SilverStripe Progressive Web App
|
|
|
|
Tools to add progressive web app functionality to your silverstripe website
|
|
|
|
## Installation
|
|
```
|
|
composer require pixelspin/silverstripe-progressivewebapp
|
|
```
|
|
|
|
## Usage
|
|
- Install the module, run dev/build and fill in the settings in the siteconfig
|
|
- Include the required js to register the service worker
|
|
```
|
|
Requirements::javascript('pixelspin/silverstripe-progressivewebapp:resources/js/progressivewebapp.js');
|
|
```
|
|
- Add the following tags to the head of your website
|
|
```
|
|
<meta name="theme-color" content="$SiteConfig.ManifestColor">
|
|
<link rel="manifest" href="{$BaseHref}manifest.json">
|
|
``` |