mirror of
https://github.com/warp-tech/warpgate.git
synced 2025-02-20 21:42:57 +08:00
fixed #1017 - HTTP proxying broken
This commit is contained in:
parent
daacd55d25
commit
ed6f68c659
1 changed files with 1 additions and 1 deletions
|
@ -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)?;
|
||||
|
||||
|
|
Loading…
Reference in a new issue