Metadata-Version: 2.4
Name: fhvite
Version: 0.0.3
Summary: Vite plugin for FastHTML/MonsterUI that automates installation & building
Author-email: Curtis Allan <ca@answer.ai>
License: Apache-2.0
Project-URL: Repository, https://github.com/AnswerDotAI/fhvite
Project-URL: Documentation, https://AnswerDotAI.github.io/fhvite
Keywords: nbdev,jupyter,notebook,python
Classifier: Natural Language :: English
Classifier: Intended Audience :: Developers
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastcore
Requires-Dist: python-fasthtml
Requires-Dist: pybun
Dynamic: license-file

# fhvite


<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->

## Usage

### Installation

Install the latest version from pypi:

``` bash
pip install fhvite
```

## How to use

Import into an existing FastHTML application and add the following:

``` python
from fasthtml.common import *

# Add this import
from fhvite.core import add_vite

app = FastHTML()

# Add this line
add_vite(app)
```

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.
