feat: Add bootstrap icons dependency

- Add node package for bootstrap icons
- New eleventy config addPassthroughCopy for package files
- Change link to local resource
- Change all node dependencies to production
This commit is contained in:
sthag 2025-06-21 14:22:31 +02:00
parent 8b7241c4da
commit a33163d556
4 changed files with 25 additions and 6 deletions

View file

@ -31,6 +31,7 @@ module.exports = function (eleventyConfig) {
eleventyConfig.addPassthroughCopy({"source/data/**/*.json": "json"});
eleventyConfig.addPassthroughCopy("vendor");
eleventyConfig.addPassthroughCopy({"node_modules/bootstrap-icons": "vendor/bootstrap-icons"});
eleventyConfig.addWatchTarget("./source/style/");