Spaces:
Build error
Build error
File size: 275 Bytes
b59d95a |
1 2 3 4 5 6 7 8 9 10 11 12 |
from fastapi import FastAPI
from fastapi.staticfiles import StaticFiles
app = FastAPI()
# Serve the React app
app.mount("/", StaticFiles(directory="frontend/build", html=True), name="static")
@app.get("/api")
async def root():
return {"message": "Hello from FastAPI"}
|