Fixed instant loading when used with use_directory_urls: false

This commit is contained in:
squidfunk 2021-03-07 18:44:43 +01:00
parent 1d790c9000
commit 66a6713523
4 changed files with 8 additions and 8 deletions

View File

@ -217,7 +217,7 @@
</script> </script>
{% endblock %} {% endblock %}
{% block scripts %} {% block scripts %}
<script src="{{ 'assets/javascripts/bundle.d1d4d62b.min.js' | url }}"></script> <script src="{{ 'assets/javascripts/bundle.6946554b.min.js' | url }}"></script>
{% for path in config["extra_javascript"] %} {% for path in config["extra_javascript"] %}
<script src="{{ path | url }}"></script> <script src="{{ path | url }}"></script>
{% endfor %} {% endfor %}

View File

@ -105,9 +105,9 @@ function preprocess(urls: string[]): string[] {
return urls return urls
/* Take the first two URLs and remove everything after the last slash */ /* Take the first two URLs and remove everything after the last slash */
const [root, next] = urls.slice(0, 2).map(url => ( const [root, next] = urls
url.replace(/[^/]+$/, "") .sort((a, b) => a.length - b.length)
)) .map(url => url.replace(/[^/]+$/, ""))
/* Compute common prefix */ /* Compute common prefix */
let index = 0 let index = 0