Init Vue + Webpack

This commit is contained in:
2019-04-03 15:25:54 +02:00
parent ac241e7365
commit d8ac11921f
20 changed files with 11742 additions and 2 deletions

View File

@@ -15,7 +15,14 @@ Including another URLconf
"""
from django.contrib import admin
from django.urls import path
from django.views.generic import TemplateView
urlpatterns = [
path('admin/', admin.site.urls),
path('',
TemplateView.as_view(
template_name="application.html"
),
name="app"
),
]