config.yml: mount bootstrap.bundle.min.js in static folder (#1655)

We only copy this file
This commit is contained in:
XhmikosR 2023-03-26 22:05:36 +03:00 коммит произвёл GitHub
Родитель 0b52cc6176
Коммит 430b69d460
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -47,7 +47,7 @@ module:
- source: node_modules/bootstrap/scss
target: assets/scss/bootstrap
- source: node_modules/bootstrap/dist/js/bootstrap.bundle.min.js
target: assets/js/vendor/bootstrap.bundle.min.js
target: static/assets/js/vendor/bootstrap.bundle.min.js
- source: node_modules/clipboard/dist/clipboard.min.js
target: assets/js/vendor/clipboard.min.js
- source: node_modules/fuse.js/dist/fuse.min.js

Просмотреть файл

@ -1,5 +1,4 @@
{{ $bootstrapJs := resources.Get "/js/vendor/bootstrap.bundle.min.js" | resources.Copy "/assets/js/vendor/bootstrap.bundle.min.js" -}}
<script async src="{{ $bootstrapJs.Permalink | relURL }}"></script>
<script async src="/assets/js/vendor/bootstrap.bundle.min.js"></script>
{{- if or .IsHome (eq .Page.Layout "sprite") -}}
{{- $fuseVendor := resources.Get "js/vendor/fuse.min.js" -}}