Skip to content

Commit

Permalink
fixed #1017 - HTTP proxying broken
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugeny committed Jul 26, 2024
1 parent daacd55 commit ed6f68c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion warpgate-web/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pub struct ManifestEntry {
}

pub fn lookup_built_file(source: &str) -> Result<ManifestEntry, LookupError> {
let file = Assets::get("manifest.json").ok_or(LookupError::ManifestNotFound)?;
let file = Assets::get(".vite/manifest.json").ok_or(LookupError::ManifestNotFound)?;

let obj: HashMap<String, ManifestEntry> = serde_json::from_slice(&file.data)?;

Expand Down

0 comments on commit ed6f68c

Please sign in to comment.