1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-09-24 11:28:23 +02:00

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>
{% endblock %}
{% 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"] %}
<script src="{{ path | url }}"></script>
{% endfor %}

View File

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