|
@@ -61,7 +61,7 @@ ALGORITHM = "HS256"
|
|
|
ACCESS_TOKEN_EXPIRE_DAYS = 5
|
|
|
pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")
|
|
|
|
|
|
-app.mount("/", StaticFiles(directory="/"), name="/")
|
|
|
+
|
|
|
app.mount("/static", StaticFiles(directory="static"), name="static")
|
|
|
app.mount("/static/img", StaticFiles(directory="static/img"), name="static/img")
|
|
|
app.mount("/templates", StaticFiles(directory="templates"), name="templates")
|