15 lines
469 B
JSON
15 lines
469 B
JSON
{% load pwa %}
|
|
{
|
|
"name": {{ PWA_APP_NAME|js }},
|
|
"short_name": {{ PWA_APP_NAME|js }},
|
|
"description": {{ PWA_APP_DESCRIPTION|js }},
|
|
"start_url": {{ PWA_APP_START_URL|js }},
|
|
"display": {{ PWA_APP_DISPLAY|js }},
|
|
"orientation": {{ PWA_APP_ORIENTATION|js }},
|
|
"background_color": {{ PWA_APP_BACKGROUND_COLOR|js }},
|
|
"theme_color": {{ PWA_APP_THEME_COLOR|js }},
|
|
"icons": {{ PWA_APP_ICONS|js }},
|
|
"dir": {{ PWA_APP_DIR|js }},
|
|
"lang": {{ PWA_APP_LANG|js }}
|
|
}
|