We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c0a3d0 commit 9e0e46fCopy full SHA for 9e0e46f
webpack_loader/templatetags/webpack_loader.py
@@ -16,6 +16,6 @@ def render_bundle(bundle_name):
16
if chunk['name'].endswith('.js'):
17
url = chunk.get('publicPath') or chunk['url']
18
tags.append('<script type="text/javascript" src="{}"></script>'.format(url))
19
- elif chunk['name'].endwith('.css'):
+ elif chunk['name'].endswith('.css'):
20
tags.append('<link type="text/css" href="{}" rel="stylesheet">'.format(url))
21
return '\n'.join(tags)
0 commit comments