From e570eb7d7f026738f87ed091c37a8a1f4d7e31b0 Mon Sep 17 00:00:00 2001 From: hvanranden Date: Thu, 22 Jan 2026 19:18:57 +0100 Subject: [PATCH] Add LibMan configuration to manage Bootstrap library dependencies --- Intentor/libman.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Intentor/libman.json diff --git a/Intentor/libman.json b/Intentor/libman.json new file mode 100644 index 0000000..945d0f4 --- /dev/null +++ b/Intentor/libman.json @@ -0,0 +1,16 @@ +{ + "version": "1.0", + "defaultProvider": "cdnjs", + "libraries": [ + { + "library": "bootstrap@5.3.3", + "destination": "wwwroot/lib/bootstrap/", + "files": [ + "dist/css/bootstrap.min.css", + "dist/css/bootstrap.min.css.map", + "dist/js/bootstrap.bundle.min.js", + "dist/js/bootstrap.bundle.min.js.map" + ] + } + ] +}