Django is a modern web framework. It simply doesn't follow the hype around JS SPAs. However, if you really want to, you can of course still render static content + serve a JS framework like Vue to the client, and then have dynamic widgets rendered on the client side.
If you want to build an SPA anyway, then Django is not the right framework to start with though.
I use Django + DRF for SPA. SPA bundle is served from an nginx container, but I don't see any problem building it into the django image either.
What is the right framework for building SPAs?