You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This demo shows how to run a single django-vite app using the new DJANGO_VITE={...} settings from django-vite v3 and higher. Everything else in the setup is identical to the legacy-settings demo.
This demo loads assets from 4 different vite apps:
The default app is running on a vite dev server with dev_mode=True.
vite_app_1 app is also running on a vite dev server with dev_mode=True.
vite_app_2 app has already been compiled in a production build. Those assets are being served from the STATIC_ROOT with dev_mode=False.
vite_app_3 app has also been compiled in a production build. Those assets are being served from the STATIC_ROOT with dev_mode=False.
Noteworthy differences between the multi-app setup and the other demos:
settings.py has the DJANGO_VITE settings that enable multiple apps.
index.html shows how to load assets from multiple vite apps.
vite_app_1/vite.config.js shows how I'm using static_url_prefix for directing build output and dev server routing.
Bug Report
There's 1 bug I've found with this demo: I'm not able to make HMR work on 2 different vite dev servers if they're both trying to update assets on the same page. Only one vite app will get changes registered to it in real time.
Realistically, a developer is unlikely to be working on more than 1 vite app with dev_mode=True on the same page. But it may still be worth investigating.
About
Examples of how to use django-vite with multiple vue apps