mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Fixed lunr search stemmers not being correctly loaded
This commit is contained in:
parent
f033fd5437
commit
6dc12758bb
2
Makefile
2
Makefile
@ -33,7 +33,7 @@ node_modules:
|
||||
# -----------------------------------------------------------------------------
|
||||
|
||||
# Build theme for distribution with Webpack
|
||||
material: $(shell find src) webpack.config.js .babelrc
|
||||
material: $(shell find src) .babelrc webpack.config.js
|
||||
$(shell yarn bin)/webpack --env.prod
|
||||
|
||||
# -----------------------------------------------------------------------------
|
||||
|
File diff suppressed because one or more lines are too long
1
material/assets/javascripts/application.5165553b.js
Normal file
1
material/assets/javascripts/application.5165553b.js
Normal file
File diff suppressed because one or more lines are too long
1
material/assets/javascripts/modernizr.1aa3b519.js
Normal file
1
material/assets/javascripts/modernizr.1aa3b519.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -52,7 +52,7 @@
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
{% block libs %}
|
||||
<script src="{{ base_url }}/assets/javascripts/modernizr.f383bccf.js"></script>
|
||||
<script src="{{ base_url }}/assets/javascripts/modernizr.1aa3b519.js"></script>
|
||||
{% endblock %}
|
||||
{% block fonts %}
|
||||
{% if font != false %}
|
||||
@ -167,7 +167,7 @@
|
||||
{% endblock %}
|
||||
</div>
|
||||
{% block scripts %}
|
||||
<script src="{{ base_url }}/assets/javascripts/application.446a0cc2.js"></script>
|
||||
<script src="{{ base_url }}/assets/javascripts/application.5165553b.js"></script>
|
||||
{% if lang.t("search.language") != "en" %}
|
||||
{% set languages = lang.t("search.language").split(",") %}
|
||||
{% if languages | length and languages[0] != "" %}
|
||||
|
@ -49,7 +49,7 @@
|
||||
"escape-string-regexp": "^1.0.5",
|
||||
"eslint": "^4.3.0",
|
||||
"event-hooks-webpack-plugin": "^1.0.0",
|
||||
"expose-loader": "^0.7.3",
|
||||
"expose-loader": "^0.7.4",
|
||||
"extract-text-webpack-plugin": "^3.0.2",
|
||||
"fastclick": "^1.0.6",
|
||||
"file-loader": "^1.1.5",
|
||||
|
@ -21,7 +21,7 @@
|
||||
*/
|
||||
|
||||
import escape from "escape-string-regexp"
|
||||
import lunr from "lunr" // expose-loader?lunr!lunr"
|
||||
import lunr from "expose-loader?lunr!lunr"
|
||||
|
||||
/* ----------------------------------------------------------------------------
|
||||
* Functions
|
||||
|
Loading…
Reference in New Issue
Block a user