From 23fe62c8871f0edbf58269f400f4acf106f63659 Mon Sep 17 00:00:00 2001 From: seungwoo Date: Thu, 18 Jul 2019 10:40:17 +0900 Subject: [PATCH] for using custom PWA_APP_ICONS src path, define STATICFILES_DIRS --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index c896004..0c2e2c0 100644 --- a/README.md +++ b/README.md @@ -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