zulip/web/webpack.dev-assets.json
Sayam Samal c973adb5e8 webpack: Fix misordered bootstrap.app.css in dev assets webpack.
This commit fixes a bug where the the bootstrap.app.css was taking
precedence over the legacy_portico_styles_bundle.css, following the
changes in commit 847a7f8f9c.

While this commit fixes the issue by importing legacy_portico_bundle.ts
instead of trying to fix the order sequence of
legacy_portico_styles_bundle.css, similar to the approach in commits
ead2f2d254 and
c6dcfbc480, the actual cause of this bug
remains unknown at the time of the commit.
2026-02-04 10:47:46 -08:00

24 lines
772 B
JSON

{
"dev-login": ["./src/bundles/legacy_portico_bundle.ts", "./src/portico/dev-login.ts"],
"dev-integrations-panel": [
"./src/bundles/legacy_portico_bundle.ts",
"./src/portico/integrations_dev_panel.ts",
"./styles/portico/integrations_dev_panel.css",
"./src/reload_state.ts",
"./src/channel.ts"
],
"dev-email-log": [
"./src/bundles/legacy_portico_bundle.ts",
"./src/portico/email_log.ts",
"./styles/portico/email_log.css",
"./src/reload_state.ts",
"./src/channel.ts"
],
"dev-help": [
"./src/bundles/legacy_portico_bundle.ts",
"./styles/portico/dev_help.css",
"./styles/portico/markdown.css"
],
"showroom": ["./src/bundles/showroom.ts"]
}