Merge pull request #16 from seunwoolee/master

for using custom PWA_APP_ICONS src path, define STATICFILES_DIRS
This commit is contained in:
Silvio Luis
2019-09-30 11:02:53 -03:00
committed by GitHub

View File

@@ -36,6 +36,12 @@ INSTALLED_APPS = [
...
]
```
Define STATICFILES_DIRS for your custom PWA_APP_ICONS
```python
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'static'),
]
```
Configure your app name, description, icons and splash screen images in settings.py:
```python