diff options
author | Alex <alexta69@gmail.com> | 2019-11-29 20:16:58 +0200 |
---|---|---|
committer | Alex <alexta69@gmail.com> | 2019-11-29 20:16:58 +0200 |
commit | 9d6d4a2fb8983111b60831b11ab108c80283f6bf (patch) | |
tree | 4802d7126709aa6307302fd8d39f32bebc54d2f4 /app | |
parent | initial commit: working version (diff) | |
download | metube-9d6d4a2fb8983111b60831b11ab108c80283f6bf.tar.gz metube-9d6d4a2fb8983111b60831b11ab108c80283f6bf.tar.bz2 metube-9d6d4a2fb8983111b60831b11ab108c80283f6bf.zip |
add favicon
Diffstat (limited to 'app')
-rw-r--r-- | app/main.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/main.py b/app/main.py index dc021d4..9d5fb2e 100644 --- a/app/main.py +++ b/app/main.py @@ -81,6 +81,7 @@ async def connect(sid, environ): def index(request):
return web.FileResponse('ui/dist/metube/index.html')
+routes.static('/favicon/', 'favicon')
routes.static('/', 'ui/dist/metube')
app.add_routes(routes)
|