From 50a00ec9b032b8ede1982089760c972a8489caf3 Mon Sep 17 00:00:00 2001 From: Quetzal Rivera Date: Sat, 12 Aug 2023 17:39:33 -0600 Subject: [PATCH] Added missing CombineUri --- src/Vite.AspNetCore/Services/ViteManifest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Vite.AspNetCore/Services/ViteManifest.cs b/src/Vite.AspNetCore/Services/ViteManifest.cs index af9af90..9f0d6bf 100644 --- a/src/Vite.AspNetCore/Services/ViteManifest.cs +++ b/src/Vite.AspNetCore/Services/ViteManifest.cs @@ -77,7 +77,7 @@ public ViteManifest(ILogger logger, IOptions options, foreach (var chunk in this._chunks) { // Add the base path to the key. - var key = Path.Combine(this._base, chunk.Key); + var key = CombineUri(this._base, chunk.Key); // Add the base path to the value. var value = chunk.Value with