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