Sha256: c4c948c61e7492aeaacae317da779281e283e3c1cdf1e11f90c6adb2ad374ef0

Contents?: true

Size: 1.35 KB

Versions: 8

Compression:

Stored size: 1.35 KB

Contents

---
layout: compress

# The list to be cached by PWA
---

const resource = [

  /* --- CSS --- */
  '{{ "/assets/css/style.css" | relative_url }}',

  /* --- PWA --- */
  '{{ "/app.js" | relative_url }}',
  '{{ "/sw.js" | relative_url }}',

  /* --- HTML --- */
  '{{ "/index.html" | relative_url }}',
  '{{ "/404.html" | relative_url }}',
  {% for tab in site.tabs %}
    '{{ tab.url | relative_url }}',
  {% endfor %}

  /* --- Favicons & compressed JS --- */
  {% assign cache_list = site.static_files | where: 'swcache', true  %}
  {% for file in cache_list %}
    '{{ file.path | relative_url }}'{%- unless forloop.last -%},{%- endunless -%}
  {% endfor %}

];

/* The request url with below domain will be cached */
const allowedDomains = [
  {% if site.google_analytics.id != empty and site.google_analytics.id %}
    'www.googletagmanager.com',
    'www.google-analytics.com',
  {% endif %}

  '{{ site.url | split: "//" | last }}',

  {% if site.img_cdn contains '//' and site.img_cdn %}
    '{{ site.img_cdn | split: '//' | last | split: '/' | first }}',
  {% endif %}

  'fonts.gstatic.com',
  'fonts.googleapis.com',
  'cdn.jsdelivr.net',
  'polyfill.io'
];

/* Requests that include the following path will be banned */
const denyUrls = [
  {% if site.google_analytics.pv.cache_path %}
    '{{ site.google_analytics.pv.cache_path | absolute_url }}'
  {% endif %}
];

Version data entries

8 entries across 8 versions & 3 rubygems

Version Path
jekyll-theme-chirpy-clarkezone-5.3.2 assets/js/data/swcache.js
jekyll-theme-chirpy-5.3.0 assets/js/data/swcache.js
jekyll-theme-abd3lraouf-5.2.9 assets/js/data/swcache.js
jekyll-theme-abd3lraouf-5.2.8 assets/js/data/swcache.js
jekyll-theme-abd3lraouf-5.2.7 assets/js/data/swcache.js
jekyll-theme-chirpy-5.2.1 assets/js/data/swcache.js
jekyll-theme-chirpy-5.2.0 assets/js/data/swcache.js
jekyll-theme-chirpy-5.1.0 assets/js/data/swcache.js