Repository URL to install this package:
|
Version:
0.70.0.dev5755 ▾
|
flet-web
/
__init__.py
|
|---|
import os
from pathlib import Path
from flet_web.patch_index import (
patch_font_manifest_json,
patch_index_html,
patch_manifest_json,
)
def get_package_web_dir():
web_root_dir = os.environ.get("FLET_WEB_PATH")
return web_root_dir or str(Path(__file__).parent.joinpath("web"))
__all__ = ["patch_font_manifest_json", "patch_index_html", "patch_manifest_json"]