Metadata-Version: 2.0
Name: django-webpack-bundle
Version: 1.0.1
Summary: UNKNOWN
Home-page: https://github.com/matthiask/django-webpack-bundle/
Author: Matthias Kestenholz
Author-email: mk@feinheit.ch
License: BSD License
Platform: OS Independent
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Requires-Dist: django-webpack-loader

=====================
django-webpack-bundle
=====================

Install ``django-webpack-loader``

Register webpack bundle as a template tag somewhere:

.. code-block:: python

    from django import template

    from webpack_bundle import webpack_bundle

    register = template.Library()

    register.simple_tag(webpack_bundle)


``webpack_bundle`` assumes that it may load Webpack bundles from
``settings.WEBPACK_BUNDLE_PATH`` or ``settings.BASE_DIR + "static/"``.


