Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -108,6 +108,10 @@ async def script1_js():
|
|
108 |
async def script2_js():
|
109 |
return FileResponse("script2.js")
|
110 |
|
|
|
|
|
|
|
|
|
111 |
@app.get("/")
|
112 |
async def read_index():
|
113 |
return FileResponse('index.html')
|
|
|
108 |
async def script2_js():
|
109 |
return FileResponse("script2.js")
|
110 |
|
111 |
+
@app.get("/styles.css")
|
112 |
+
async def styles_css():
|
113 |
+
return FileResponse("styles.css")
|
114 |
+
|
115 |
@app.get("/")
|
116 |
async def read_index():
|
117 |
return FileResponse('index.html')
|