diff options
author | Oscar Najera <hi@oscarnajera.com> | 2025-01-17 04:43:33 +0100 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2025-01-17 04:43:33 +0100 |
commit | 0d1956e4b6dbf511b6968aa1aca6af4c814814b0 (patch) | |
tree | 57097c37fba28bd445f4ab0e19772334ec6ea25f /makefile | |
parent | 94936b8c4e03a64cd89f0ccdfb79a97fb44ebb30 (diff) | |
download | hugo-minimalist-theme-0d1956e4b6dbf511b6968aa1aca6af4c814814b0.tar.gz hugo-minimalist-theme-0d1956e4b6dbf511b6968aa1aca6af4c814814b0.tar.bz2 hugo-minimalist-theme-0d1956e4b6dbf511b6968aa1aca6af4c814814b0.zip |
[CSS][Icons] Vendor Fontawesome & Academicons
Instead of loading from CDN all the css, vendor it an only
include the CSS classes that I use.
Font awesome 6.7.2
Academicons 1.9.4
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ SRC = $(addsuffix .css, $(addprefix $(scss), pretachyons tables)) css: $(css)/tailwind.css -$(css)/tailwind.css: $(css)/input.css | deps +$(css)/tailwind.css: $(css)/input.css $(css)/academicons.css $(css)/fontawesome.css npx tailwindcss -i $< -o $@ deps: |