Trying to render vue js build (index.html) in Django its working fine but the problem is that when i give any route to that url than i get page not found from vue.
This working fine
url(r'^$', TemplateView.as_view(template_name="index.html"), name='whatever'),
And this is not, giving page not found error of vue
url(r'^website/', TemplateView.as_view(template_name="index.html"), name='whatever'),