Skip to content

Commit 595c258

Browse files
committed
feat(debug): Added PWA_APP_DEBUG_MODE
1 parent 1e71602 commit 595c258

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

pwa/app_settings.py

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
PWA_APP_BACKGROUND_COLOR = getattr(settings, 'PWA_APP_BACKGROUND_COLOR', '#fff')
1515
PWA_APP_DISPLAY = getattr(settings, 'PWA_APP_DISPLAY', 'standalone')
1616
PWA_APP_SCOPE = getattr(settings, 'PWA_APP_SCOPE', '/')
17+
PWA_APP_DEBUG_MODE = getattr(settings, 'PWA_APP_DEBUG_MODE', True)
1718
PWA_APP_ORIENTATION = getattr(settings, 'PWA_APP_ORIENTATION', 'any')
1819
PWA_APP_START_URL = getattr(settings, 'PWA_APP_START_URL', '/')
1920
PWA_APP_FETCH_URL = getattr(settings, 'PWA_APP_FETCH_URL', '/')

pwa/templates/pwa.html

+4
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,14 @@
3939
scope: '{{ PWA_APP_SCOPE }}'
4040
}).then(function (registration) {
4141
// Registration was successful
42+
{% if PWA_APP_DEBUG_MODE %}
4243
console.log('django-pwa: ServiceWorker registration successful with scope: ', registration.scope);
44+
{% endif %}
4345
}, function (err) {
4446
// registration failed :(
47+
{% if PWA_APP_DEBUG_MODE %}
4548
console.log('django-pwa: ServiceWorker registration failed: ', err);
49+
{% endif %}
4650
});
4751
}
4852
</script>

0 commit comments

Comments
 (0)