Fix pwa_background_color in template
This commit is contained in:
parent
64622e09fd
commit
9a26e678da
|
|
@ -3,8 +3,8 @@
|
|||
"short_name": "{{ cookiecutter.project_name }}",
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
"background_color": "{{ cookiecutter.pwa_background_color }}",
|
||||
"theme_color": "{{ cookiecutter.pwa_theme_color }}",
|
||||
"background_color": "{{ cookiecutter.pwa_background_color if cookiecutter.pwa_background_color else '#0175C2' }}",
|
||||
"theme_color": "{{ cookiecutter.pwa_theme_color if cookiecutter.pwa_theme_color else '#0175C2' }}",
|
||||
"description": "{{ cookiecutter.project_description }}",
|
||||
"orientation": "portrait-primary",
|
||||
"prefer_related_applications": false,
|
||||
|
|
|
|||
Loading…
Reference in New Issue