eli02 commited on
Commit
e8df1d7
·
1 Parent(s): d27470b

Rename mount point for static files from 'home' to 'static'

Browse files
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -177,7 +177,7 @@ def search(
177
 
178
  return results
179
 
180
- app.mount("/home", StaticFiles(directory="static", html=True), name="home")
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__":