Skip to content

Commit

Permalink
Added missing CombineUri
Browse files Browse the repository at this point in the history
  • Loading branch information
Eptagone committed Aug 12, 2023
1 parent 769143f commit 50a00ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Vite.AspNetCore/Services/ViteManifest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public ViteManifest(ILogger<ViteManifest> logger, IOptions<ViteOptions> 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
Expand Down

0 comments on commit 50a00ec

Please sign in to comment.