Fixed the output of the "path" computed property for the AssetPrefix enumeration in the library target.

This commit is contained in:
2025-03-08 12:26:11 +01:00
parent 39a9523ac9
commit 5b379fbc86
3 changed files with 15 additions and 13 deletions
@@ -29,14 +29,14 @@ private extension Collection where Element == String {
// MARK: Properties
static var paths: [Element] {[
"/css",
"/data",
"/downloads",
"/images",
"/img",
"/index",
"/js",
"/videos"
"/css/",
"/data/",
"/downloads/",
"/images/",
"/img/",
"/index/",
"/js/",
"/videos/"
]}
}