mirror of https://github.com/zulip/zulip.git
webpack: Combine archive-style bundle into archive.
This commit is contained in:
parent
f8398238a9
commit
d1d9d63841
|
@ -15,7 +15,6 @@
|
|||
{{ render_bundle('katex', attrs='nonce="%s"' % (csp_nonce)) }}
|
||||
{{ render_bundle('portico') }}
|
||||
{{ render_bundle('archive') }}
|
||||
{{ render_bundle('archive-styles') }}
|
||||
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -14,7 +14,11 @@
|
|||
"./static/js/templates.js",
|
||||
"./static/js/stream_color.js",
|
||||
"./static/js/scroll_bar.js",
|
||||
"./static/templates/compiled.js"
|
||||
"./static/templates/compiled.js",
|
||||
"./node_modules/katex/dist/katex.css",
|
||||
"./static/styles/zulip.scss",
|
||||
"./static/styles/media.scss",
|
||||
"./static/styles/archive.scss"
|
||||
],
|
||||
"portico": [
|
||||
"./static/js/portico/header.js",
|
||||
|
@ -70,11 +74,5 @@
|
|||
],
|
||||
"translations": "./static/js/translations.js",
|
||||
"zxcvbn": "./node_modules/zxcvbn/dist/zxcvbn.js",
|
||||
"app": "./static/js/bundles/app.js",
|
||||
"archive-styles": [
|
||||
"./node_modules/katex/dist/katex.css",
|
||||
"./static/styles/zulip.scss",
|
||||
"./static/styles/media.scss",
|
||||
"./static/styles/archive.scss"
|
||||
]
|
||||
"app": "./static/js/bundles/app.js"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue