Skip to content
Snippets Groups Projects
Verified Commit e55ca161 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Fix vue index template and GraphQL view

parent 21e4a748
No related branches found
No related tags found
2 merge requests!1123Resolve "Finalise Vuetify app as SPA",!1066Translations update from Weblate
Pipeline #104054 canceled
<!DOCTYPE html>
{# -*- engine:django -*- #}
{% load render_bundle from webpack_loader %}
{% load django_vite %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
{% vite_hmr_client %}
</head>
<body>
......@@ -14,6 +12,6 @@
<app></app>
</div>
{% render_bundle 'core' %}
{% vite_asset 'aleksis/core/assets/index.js' %}
</body>
</html>
......@@ -193,7 +193,7 @@ urlpatterns = [
path("oauth/", include("oauth2_provider.urls", namespace="oauth2_provider")),
path(
"graphql/",
csrf_exempt(views.PrivateGraphQLView.as_view(graphiql=True)),
csrf_exempt(GraphQLView.as_view(graphiql=True)),
name="graphql",
),
path("__i18n__/", include("django.conf.urls.i18n")),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment