1
0
Fork 0
mirror of https://github.com/Findus23/RPGnotes.git synced 2024-09-19 15:43:45 +02:00

new manifest path

This commit is contained in:
Lukas Winkler 2023-11-28 21:49:12 +01:00
parent 914f273bc0
commit f173d562e9
Signed by: lukas
GPG key ID: 54DE4D798D244853

View file

@ -23,7 +23,7 @@ Manifest = dict[str, Asset]
@lru_cache
def load_vite_manifest() -> Manifest:
with (Path(STATIC_ROOT) / "build" / "manifest.json").open() as f:
with (Path(STATIC_ROOT) / "build" / ".vite" / "manifest.json").open() as f:
return json.load(f)