Repository URL to install this package:
|
Version:
0.0.1 ▾
|
dj-kaos-react
/
urls.py
|
|---|
from django.conf import settings
from django.urls import path, re_path
from .views import react_static_redirect, ReactAppView
app_name = 'react'
urlpatterns = [
re_path("^static/".format(settings.REACT_HOME), react_static_redirect),
re_path("^".format(settings.REACT_HOME), ReactAppView.as_view(), name='webapp'),
]