mirror of
https://github.com/maciej3031/comixify.git
synced 2026-03-11 08:54:35 +00:00
Hook up frontend in settings and urls
This commit is contained in:
parent
1540130ae2
commit
f2f430929b
2 changed files with 2 additions and 0 deletions
|
|
@ -41,6 +41,7 @@ INSTALLED_APPS = [
|
|||
'api',
|
||||
'style_transfer',
|
||||
'comic_layout',
|
||||
'frontend',
|
||||
]
|
||||
|
||||
MIDDLEWARE = [
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@ from django.urls import path
|
|||
urlpatterns = [
|
||||
path('admin/', admin.site.urls),
|
||||
path(r'comixify/', include('api.urls')),
|
||||
path(r'', include('frontend.urls')),
|
||||
]
|
||||
|
||||
urlpatterns += staticfiles_urlpatterns()
|
||||
|
|
|
|||
Loading…
Reference in a new issue