mirror of
https://github.com/ParisNeo/lollms-webui.git
synced 2025-01-01 18:16:39 +00:00
5 lines
134 B
Python
5 lines
134 B
Python
|
from fastapi import FastAPI
|
||
|
from fastapi.staticfiles import StaticFiles
|
||
|
app = FastAPI()
|
||
|
|
||
|
app.mount("/", StaticFiles(directory="dist"))
|