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:easywebpack
must be placed beforestaticfiles
for./manage.py
commands 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: