Making Django and Webpack best friends.
The full documentation is at https://django-easywebpack.readthedocs.io.
Install django-easywebpack:
pip install django-easywebpack
Add it to your INSTALLED_APPS:
Note:easywebpackmust be placed beforestaticfilesfor./manage.pycommands to work properly.
INSTALLED_APPS = (
'easywebpack',
...
)Then, configure it in your Django settings:
EASYWEBPACK = {
'MANIFEST': 'path/to/manifest.json',
}Tools used in rendering this package: