for using custom PWA_APP_ICONS src path, define STATICFILES_DIRS

This commit is contained in:
seungwoo
2019-07-18 10:40:17 +09:00
parent 6ba28177ce
commit 23fe62c887

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