bf59f53f8b
Adding the following template tag ``` {% webpack_asset 'path/to/original/file' %} ``` Fixes https://github.com/django-webpack/django-webpack-loader/issues/343 Depends on https://github.com/django-webpack/webpack-bundle-tracker/pull/125
10 lines
246 B
Python
Executable file
10 lines
246 B
Python
Executable file
#!/usr/bin/env python
|
|
import os
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "app.settings")
|
|
|
|
from django.core.management import execute_from_command_line
|
|
|
|
execute_from_command_line(sys.argv)
|