2020-07-12 17:59:05 +03:00
|
|
|
/*!
|
|
|
|
PV configuration and Javascript conversion.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const proxyEndpoint = "{{ site.google_analytics.pv.proxy_endpoint }}";
|
|
|
|
|
|
|
|
|
|
|
|
{% if site.google_analytics.pv.cache and site.google_analytics.pv.enabled %}
|
|
|
|
{% assign enabled = true %}
|
|
|
|
{% else %}
|
|
|
|
{% assign enabled = false %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
const pvCacheEnabled = {{ enabled }};
|
2021-01-18 18:25:09 +03:00
|
|
|
|
|
|
|
const pvCacheData = "{{ '/assets/js/data/pageviews.json' | relative_url }}";
|