Rename mount point for static files from 'home' to 'static'
Browse files
main.py
CHANGED
@@ -177,7 +177,7 @@ def search(
|
|
177 |
|
178 |
return results
|
179 |
|
180 |
-
app.mount("/home", StaticFiles(directory="static", html=True), name="
|
181 |
|
182 |
# Run the app
|
183 |
if __name__ == "__main__":
|
|
|
177 |
|
178 |
return results
|
179 |
|
180 |
+
app.mount("/home", StaticFiles(directory="static", html=True), name="static")
|
181 |
|
182 |
# Run the app
|
183 |
if __name__ == "__main__":
|