Commit ·
777cf60
1
Parent(s): a4f1c5e
mount costumes dir
Browse files
app.py
CHANGED
|
@@ -178,6 +178,7 @@ app = Server()
|
|
| 178 |
dist_dir = "./rizz-therapy-frontend/dist"
|
| 179 |
|
| 180 |
app.mount("/assets", StaticFiles(directory=os.path.join(dist_dir, "assets")), name="assets")
|
|
|
|
| 181 |
|
| 182 |
app.mount("/StreamingAssets", StaticFiles(directory="./StreamingAssets"), name="streaming_assets")
|
| 183 |
app.mount("/WebGL", StaticFiles(directory="./ServerData/WebGL"), name="webgl_bundles")
|
|
|
|
| 178 |
dist_dir = "./rizz-therapy-frontend/dist"
|
| 179 |
|
| 180 |
app.mount("/assets", StaticFiles(directory=os.path.join(dist_dir, "assets")), name="assets")
|
| 181 |
+
app.mount("/costumes", StaticFiles(directory=os.path.join(dist_dir, "costumes")), name="costumes")
|
| 182 |
|
| 183 |
app.mount("/StreamingAssets", StaticFiles(directory="./StreamingAssets"), name="streaming_assets")
|
| 184 |
app.mount("/WebGL", StaticFiles(directory="./ServerData/WebGL"), name="webgl_bundles")
|