mirror of
https://github.com/Eugeny/tabby-web.git
synced 2025-06-20 19:39:50 +00:00
.
This commit is contained in:
parent
6640c54437
commit
879af5ef3e
@ -3,7 +3,7 @@ html
|
||||
head
|
||||
base(href='/')
|
||||
meta(name='viewport', content='initial-scale=1, minimal-ui, shrink-to-fit=no')
|
||||
script(src='/build/index.js', defer)
|
||||
script(src='/static/index.js', defer)
|
||||
title Tabby
|
||||
body
|
||||
app
|
||||
|
@ -2,7 +2,7 @@ doctype html
|
||||
html.tabby
|
||||
head
|
||||
meta(charset='UTF-8')
|
||||
script(src='/build/terminal.js')
|
||||
script(src='/static/terminal.js')
|
||||
style#custom-css
|
||||
style.
|
||||
body { transition: 0.5s background; }
|
||||
|
@ -19,7 +19,6 @@ urlpatterns = [
|
||||
|
||||
path('terminal', views.TerminalView.as_view()),
|
||||
path('app-dist/<version>/<path:path>', views.AppDistView.as_view()),
|
||||
path('build/<path:path>', views.BuildView.as_view()),
|
||||
path('', include(router.urls)),
|
||||
]
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
from django.conf import settings
|
||||
from django.conf.urls.static import static
|
||||
from django.contrib import admin
|
||||
from django.urls import path, include
|
||||
from .app.urls import urlpatterns
|
||||
@ -6,4 +8,4 @@ urlpatterns = [
|
||||
path('', include(urlpatterns)),
|
||||
path('api/1/auth/social/', include('social_django.urls', namespace='social')),
|
||||
path('admin/', admin.site.urls),
|
||||
]
|
||||
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
|
||||
|
Loading…
x
Reference in New Issue
Block a user