from fasthtml.common import *
# Add this import
from fhvite.core import add_vite
app = FastHTML()
# Add this line
add_vite(app)fhvite
Vite plugin for FastHTML/MonsterUI that semi-automates file setup & package installation
Usage
Installation
Install the latest version from pypi:
pip install fhviteHow to use
Import into an existing FastHTML application and add the following:
All necessary setup files will be generated if not already present. After that, subsequent server starts will simply build the assets and inject them into the app header.
The plugin function also mounts a FastHTML StaticNoCache(directory=pwd/'dist') route pointing to the output folder. This ensures the generated assets benefit from modern cacheing/ asset serving behaviour automatically.