mirror of https://github.com/zulip/zulip.git
Revert "webpack: Combine archive-style bundle into archive."
This reverts commit d1d9d63841
, and fixes
the fonts in webapp being overwritten by bootstarap due to webpack bundling.
This commit is contained in:
parent
c010a704de
commit
8a012b9e7f
|
@ -15,6 +15,7 @@
|
|||
{{ render_bundle('katex', attrs='nonce="%s"' % (csp_nonce)) }}
|
||||
{{ render_bundle('portico') }}
|
||||
{{ render_bundle('archive') }}
|
||||
{{ render_bundle('archive-styles') }}
|
||||
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -14,11 +14,7 @@
|
|||
"./static/js/templates.js",
|
||||
"./static/js/stream_color.js",
|
||||
"./static/js/scroll_bar.js",
|
||||
"./static/templates/compiled.js",
|
||||
"./node_modules/katex/dist/katex.css",
|
||||
"./static/styles/zulip.scss",
|
||||
"./static/styles/media.scss",
|
||||
"./static/styles/archive.scss"
|
||||
"./static/templates/compiled.js"
|
||||
],
|
||||
"portico": [
|
||||
"./static/js/portico/header.js",
|
||||
|
@ -74,5 +70,11 @@
|
|||
],
|
||||
"translations": "./static/js/translations.js",
|
||||
"zxcvbn": "./node_modules/zxcvbn/dist/zxcvbn.js",
|
||||
"app": "./static/js/bundles/app.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"
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue