Spaces:
Sleeping
Sleeping
jfid
Browse files
app.py
CHANGED
|
@@ -127,7 +127,7 @@ settings = {
|
|
| 127 |
|
| 128 |
# Assuming your static files are in a directory named 'static'.
|
| 129 |
app.mount("/static", StaticFiles(directory="static"), name="static")
|
| 130 |
-
|
| 131 |
@app.get("/")
|
| 132 |
def read_root():
|
| 133 |
# Serve your static HTML file at the root.
|
|
|
|
| 127 |
|
| 128 |
# Assuming your static files are in a directory named 'static'.
|
| 129 |
app.mount("/static", StaticFiles(directory="static"), name="static")
|
| 130 |
+
app.mount("/assets", StaticFiles(directory="static/assets"), name="assets")
|
| 131 |
@app.get("/")
|
| 132 |
def read_root():
|
| 133 |
# Serve your static HTML file at the root.
|