Fix sass quoted string interpolation for hugo 0.110.0 (#1566)

* fix for #1378 to fix sass quoted string interpolation for hugo 0.110.0

* Adds quotes to the scss.hbs file so it reflects what is in font/bootstrap-icons.scss

* Update bootstrap-icons.scss

* Putting the fix, adding quotes around the -icons-font-file variable, back after it was removed by ea46c090fa

* The font/bootstrap-icons.scss is auto generated, so changes should not be made manually.

---------

Co-authored-by: XhmikosR <xhmikosr@gmail.com>
This commit is contained in:
Darrel Herbst 2023-03-25 12:49:56 -04:00 коммит произвёл GitHub
Родитель 8b75303090
Коммит d10633c5de
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -6,7 +6,7 @@
${{ name }}-font: "{{ name }}" !default;
${{ name }}-font-dir: "{{ fontsUrl }}" !default;
${{ name }}-font-file: #{${{ name }}-font-dir}/#{${{ name }}-font} !default;
${{ name }}-font-file: "#{${{ name }}-font-dir}/#{${{ name }}-font}" !default;
${{ name }}-font-hash: "24e3eb84d0bcaf83d77f904c78ac1f47" !default;
${{ name }}-font-src: url("#{${{ name }}-font-file}.woff2?#{${{ name }}-font-hash}") format("woff2"),
url("#{${{ name }}-font-file}.woff?#{${{ name }}-font-hash}") format("woff") !default;