Skip to main content

Introducing Workflow Engine, try for FREE workflowengine.io.

Bundle Size Comparison of Form Libraries

Choosing the right form library significantly impacts your application's performance, especially on mobile devices and slow networks. This comprehensive comparison analyzes bundle sizes of four popular form libraries: FormEngine Core, SurveyJS, react-jsonschema-form (RJSF), and Vueform, helping you make an informed decision based on actual shipping code rather than feature lists.

Why bundle size matters for form libraries

Modern web applications face strict performance budgets, particularly when serving users on mobile devices or in regions with limited network connectivity. Every kilobyte of JavaScript affects load times, user experience, and conversion rates.

The performance impact of bundle size

Additional JavaScriptSlow 3G Impact4G ImpactUser Experience Impact
+50 KB~1.5–1.7 seconds~0.15 secondsNoticeable delay on mobile
+100 KB~2.6–2.8 seconds~0.30 secondsSignificant delay, possible abandonment
+300 KB~7.0–7.5 seconds~0.70 secondsHigh abandonment rate
+500 KB~11–12 seconds~1.1 secondsCritical performance issue

Form libraries, while essential for user interaction, can contribute substantially to your total JavaScript payload. Understanding how different libraries approach bundle size helps you choose one that aligns with your performance goals.

Testing methodology and fair comparison

info

All mentioned tools, testing data, and the complete test suite are available in our GitHub repository. The repository includes build configurations, test applications for each library, and scripts to reproduce these measurements. Feel free to explore the code, run your own tests, or contact us with questions.

To ensure accurate, comparable results, we implemented a standardized testing approach:

Test scenarios

  • Login form: Simple form with email and password fields
  • Booking form: Complex multi-step form with validation and conditional logic

Tooling assumptions

  • Build tool: Vite (default production configuration)
  • Optimizations: Minification + gzip enabled
  • Tree-shaking: Enabled by default
  • UI variations: Tested with default UI, Material UI (MUI), and Mantine (for FormEngine, RJSF, and SurveyJS) where applicable

Equalization approaches

  1. Duplicate package removal: Eliminated version mismatches
  2. UI kit equalization: Tested with default UI and UI-library variants (Material UI and Mantine where available)
  3. Tree-shaking evaluation: Measured effectiveness of dead code elimination

Bundle size results: gzipped comparison

The following tables present gzipped bundle sizes for each library across different scenarios. Gzipped size represents what actually travels over the network to users' browsers.

Simple login form results

LibraryDefault UI SizeWith Material UIWith MantineKey Insight
Vueform141.64 KB142.02 KBSmallest baseline, minimal MUI impact
RJSF176.39 KB233.38 KB258.70 KBMantine adds more overhead than MUI
FormEngine Core245.15 KB189.86 KB172.18 KBLowest Mantine size among tested React stacks
SurveyJS426.85 KB395.42 KB361.00 KBLarge baseline, but lower with Mantine

Complex booking form results

LibraryDefault UI SizeWith Material UIWith MantineKey Insight
Vueform199.86 KB200.03 KBStable size, integrated UI
RJSF179.22 KB236.31 KB285.08 KBStrong baseline, large growth with UI overlays
FormEngine Core317.70 KB200.56 KB245.26 KBGood MUI result and competitive Mantine result
SurveyJS428.87 KB460.49 KB473.09 KBHighest overall sizes in this scenario

Architectural analysis: Why results vary

Different libraries adopt distinct architectural approaches that directly impact their bundle size characteristics.

FormEngine Core: The modular advantage

FormEngine's pluggable architecture enables complete UI replacement. When you switch from its default React Suite components to Material UI:

Important

FormEngine's modular design means you only pay for what you use. When integrated with Material UI, the default React Suite components are completely removed from your bundle, resulting in significant size reductions.

  • Complete UI replacement: Default UI components are entirely removed
  • Optimal tree-shaking: Unused code is effectively eliminated
  • Zero UI overhead: No duplicate UI code shipped
  • Best-in-class MUI integration: Actually reduces bundle size

This makes FormEngine Core particularly valuable for teams already using established UI libraries like Material UI.

Mantine UI integration

FormEngine also provides a dedicated Mantine view package in @react-form-builder/components-mantine (see src/packages/views/mantine). You can replace the default React Suite UI with Mantine components in the same way as with Material UI:

  • Drop-in Mantine support: Use Mantine-based inputs, containers, and layouts while keeping FormEngine's data model and validation.
  • Same modular behavior: React Suite components are removed from the bundle when you switch to Mantine.
  • Bundle-size friendly: Mantine integration benefits from the same tree-shaking and “only pay for what you use” model as the MUI view.

This is especially useful if your application already uses Mantine for the rest of its UI and you want a consistent visual language without duplicating component libraries.

Vueform: Integrated efficiency

Vueform delivers the smallest baseline through tight integration:

  • Monolithic architecture: UI, validation, and rendering are coupled
  • Stable size: Consistent across UI variations
  • Suitable for: Standalone applications with strict size budgets

RJSF: Predictable performance

RJSF offers predictable bundle growth:

  • Small core runtime: Lightweight foundation
  • Linear scaling: Bundle size grows with feature usage
  • MUI overhead: Adds 21-32% to bundle size

SurveyJS: Feature-rich foundation

SurveyJS prioritizes features over size:

  • Large baseline: Substantial runtime even for simple forms
  • Framework-agnostic: Flexibility comes at a size cost
  • Inconsistent optimization: MUI impact varies by scenario
  • Best for: Survey-focused applications needing extensive features

Key takeaways for library selection

When using Material UI, Mantine, or established UI libraries

Choose FormEngine Core for optimal size-to-capability ratio

FormEngine Core is one of the strongest options when integrating external UI libraries. In our current tests, Material UI reduces FormEngine bundle size by roughly 23-37% compared to the default React Suite view, and Mantine keeps it competitive as well. This modular approach makes FormEngine a strong fit for teams that standardize on either Material UI or Mantine across their applications.

Benefits:

  • Complete UI replacement eliminates default UI overhead
  • Exceptional tree-shaking removes unused code
  • Future-proof architecture adapts to any UI library
  • Strong performance for complex forms with external UI kits

When building from scratch with minimal dependencies

Choose Vueform for the smallest baseline

Vueform delivers the most compact bundles when no external UI library is required, making it suitable for standalone applications or strict performance budgets.

When needing predictable, controllable growth

Choose RJSF for linear scaling

RJSF offers predictable bundle sizes, though Material UI integration adds measurable overhead.

When survey-specific features are essential

Choose SurveyJS for specialized capabilities

SurveyJS provides extensive survey-focused features but carries a substantial size penalty that may not justify the cost for general form use cases.

Practical recommendations

For performance-critical applications

  1. Audit your UI library usage: If already using Material UI or Mantine, FormEngine Core is usually among the most efficient options
  2. Consider network conditions: On Slow 3G networks, every 50KB adds ~1.5 seconds to load time
  3. Test with your actual forms: Bundle size impact varies with form complexity
  4. Monitor tree-shaking effectiveness: Use bundle analyzers to verify dead code elimination

Integration considerations

  • FormEngine Core: Requires UI library selection but offers maximum flexibility
  • Vueform: Works best with its integrated UI, limited external UI support
  • RJSF: Good Material UI and Mantine integration, but both increase bundle size in this benchmark
  • SurveyJS: UI-kit customization is possible, but typically relies on custom rendering and larger bundles

Summary

FormEngine's architecture remains highly efficient for teams that need swappable UI libraries, while Vueform consistently provides the smallest baseline footprint. The best choice still depends on your existing stack, your target UI library, and your performance budget.


warning

Below is a detailed, in-depth library comparison with graphs. This may be of interest to those who plan to replicate these measurements and compare them with our results.

Detailed performance impact visualization

The chart below illustrates how bundle size affects load times across different network conditions:

Complete test data and methodology

Summary Matrix (Total Size)

Non-MUI (FormEngine Rsuite, RJSF, SurveyJS, VueForm)

Applogin(raw/gzip)booking(raw/gzip)
FormEngine Rsuite1.04 MB / 245.15KB (+596.5 KB / +103.5 KB)1.25 MB / 317.70KB (+671.6 KB / +138.5 KB)
RJSF600.28 KB / 176.39KB (+131.5 KB / +34.8 KB)609.67 KB / 179.22KB (0 KB / 0 KB)
SurveyJS1.81 MB / 426.85KB (+1384.5 KB / +285.2 KB)1.82 MB / 428.87KB (+1250.9 KB / +249.6 KB)
VueForm468.78 KB / 141.64KB (0 KB / 0 KB)719.85 KB / 199.86KB (+110.2 KB / +20.6 KB)

Legend: Bold values indicate the smallest value in each comparison. Smaller is better.

MUI (FormEngine MUI, RJSF, SurveyJS, VueForm)

Applogin(raw/gzip)booking(raw/gzip)
FormEngine MUI625.36 KB / 189.86KB (+154.6 KB / +47.8 KB)654.18 KB / 200.56KB (0 KB / +0.5 KB)
RJSF729.17 KB / 233.38KB (+258.5 KB / +91.4 KB)738.68 KB / 236.31KB (+84.5 KB / +36.3 KB)
SurveyJS1.47 MB / 395.42KB (+1035.7 KB / +253.4 KB)1.72 MB / 460.49KB (+1111.7 KB / +260.5 KB)
VueForm470.72 KB / 142.02KB (0 KB / 0 KB)719.50 KB / 200.03KB (+65.3 KB / 0 KB)

Legend: Bold values indicate the smallest value in each comparison. Smaller is better.

Mantine (FormEngine Mantine, RJSF, SurveyJS, VueForm)

Applogin(raw/gzip)booking(raw/gzip)
FormEngine Mantine585.98 KB / 172.18KB (0 KB / 0 KB)912.53 KB / 245.26KB (0 KB / 0 KB)
RJSF838.84 KB / 258.70KB (+252.9 KB / +86.5 KB)1015.70 KB / 285.08KB (+103.2 KB / +39.8 KB)
SurveyJS1.39 MB / 361.00KB (+842.2 KB / +188.8 KB)1.88 MB / 473.09KB (+1016.8 KB / +227.8 KB)
VueFormN/AN/A

Legend: Bold values indicate the smallest value in each comparison. Smaller is better.

Comparison by App

FormEngine Core

VariantTotal Size(raw/gzip)ChunksCode(raw/gzip)CSS(raw/gzip)
booking1.25 MB / 317.70KB2843.10 KB / 265.27KB438.18 KB / 52.42KB
booking-mantine912.53 KB / 245.26KB2694.96 KB / 213.70KB217.56 KB / 31.56KB
booking-mui654.18 KB / 200.56KB2654.00 KB / 200.40KB186.00 B / 169.00B
login1.04 MB / 245.15KB2627.10 KB / 192.72KB438.18 KB / 52.42KB
login-mantine585.98 KB / 172.18KB2535.89 KB / 164.13KB50.09 KB / 8.05KB
login-mui625.36 KB / 189.86KB2625.18 KB / 189.70KB186.00 B / 169.00B

RJSF

VariantTotal Size(raw/gzip)ChunksCode(raw/gzip)CSS(raw/gzip)
booking609.67 KB / 179.22KB2492.16 KB / 159.84KB117.50 KB / 19.38KB
booking-mantine1015.70 KB / 285.08KB2797.81 KB / 253.43KB217.89 KB / 31.65KB
booking-mui738.68 KB / 236.31KB2738.18 KB / 236.02KB518.00 B / 297.00B
login600.28 KB / 176.39KB2483.10 KB / 157.12KB117.18 KB / 19.27KB
login-mantine838.84 KB / 258.70KB2788.75 KB / 250.64KB50.09 KB / 8.05KB
login-mui729.17 KB / 233.38KB2728.99 KB / 233.21KB186.00 B / 169.00B

SurveyJS

VariantTotal Size(raw/gzip)ChunksCode(raw/gzip)CSS(raw/gzip)
booking1.82 MB / 428.87KB21.52 MB / 394.41KB299.04 KB / 34.45KB
booking-mantine1.88 MB / 473.09KB21.67 MB / 441.39KB218.11 KB / 31.70KB
booking-mui1.72 MB / 460.49KB21.72 MB / 459.70KB2.22 KB / 808.00B
login1.81 MB / 426.85KB21.52 MB / 392.40KB299.04 KB / 34.45KB
login-mantine1.39 MB / 361.00KB21.35 MB / 352.95KB50.09 KB / 8.05KB
login-mui1.47 MB / 395.42KB21.47 MB / 395.26KB186.00 B / 169.00B

VueForm

VariantTotal Size(raw/gzip)ChunksCode(raw/gzip)CSS(raw/gzip)
booking719.85 KB / 199.86KB2585.41 KB / 182.46KB134.43 KB / 17.40KB
booking-mui719.50 KB / 200.03KB2585.42 KB / 182.47KB134.08 KB / 17.56KB
login468.78 KB / 141.64KB2391.36 KB / 131.61KB77.42 KB / 10.03KB
login-mui470.72 KB / 142.02KB2392.90 KB / 131.79KB77.82 KB / 10.23KB

Comparison by Variant

LOGIN

AppTotal Size(raw/gzip)ChunksCode(raw/gzip)CSS(raw/gzip)
SurveyJS1.81 MB / 426.85KB (+1384.5 KB / +285.2 KB)21.52 MB / 392.40KB299.04 KB / 34.45KB
FormEngine Rsuite1.04 MB / 245.15KB (+596.5 KB / +103.5 KB)2627.10 KB / 192.72KB438.18 KB / 52.42KB
RJSF600.28 KB / 176.39KB (+131.5 KB / +34.8 KB)2483.10 KB / 157.12KB117.18 KB / 19.27KB
VueForm468.78 KB / 141.64KB2391.36 KB / 131.61KB77.42 KB / 10.03KB

Legend: Bold values indicate the smallest value in each comparison. Smaller is better.

Performance Comparison (using gzip sizes)

LOGIN-MUI

AppTotal Size(raw/gzip)ChunksCode(raw/gzip)CSS(raw/gzip)
SurveyJS1.47 MB / 395.42KB (+1035.7 KB / +253.4 KB)21.47 MB / 395.26KB186.00 B / 169.00B
RJSF729.17 KB / 233.38KB (+258.5 KB / +91.4 KB)2728.99 KB / 233.21KB186.00 B / 169.00B
FormEngine MUI625.36 KB / 189.86KB (+154.6 KB / +47.8 KB)2625.18 KB / 189.70KB186.00 B / 169.00B
VueForm470.72 KB / 142.02KB2392.90 KB / 131.79KB77.82 KB / 10.23KB

Legend: Bold values indicate the smallest value in each comparison. Smaller is better.

Performance Comparison (using gzip sizes)

LOGIN-MANTINE

AppTotal Size(raw/gzip)ChunksCode(raw/gzip)CSS(raw/gzip)
SurveyJS1.39 MB / 361.00KB (+842.2 KB / +188.8 KB)21.35 MB / 352.95KB50.09 KB / 8.05KB
RJSF838.84 KB / 258.70KB (+252.9 KB / +86.5 KB)2788.75 KB / 250.64KB50.09 KB / 8.05KB
FormEngine Mantine585.98 KB / 172.18KB2535.89 KB / 164.13KB50.09 KB / 8.05KB

Legend: Bold values indicate the smallest value in each comparison. Smaller is better.

Performance Comparison (using gzip sizes)

BOOKING

AppTotal Size(raw/gzip)ChunksCode(raw/gzip)CSS(raw/gzip)
SurveyJS1.82 MB / 428.87KB (+1250.9 KB / +249.6 KB)21.52 MB / 394.41KB299.04 KB / 34.45KB
FormEngine Rsuite1.25 MB / 317.70KB (+671.6 KB / +138.5 KB)2843.10 KB / 265.27KB438.18 KB / 52.42KB
VueForm719.85 KB / 199.86KB (+110.2 KB / +20.6 KB)2585.41 KB / 182.46KB134.43 KB / 17.40KB
RJSF609.67 KB / 179.22KB2492.16 KB / 159.84KB117.50 KB / 19.38KB

Legend: Bold values indicate the smallest value in each comparison. Smaller is better.

Performance Comparison (using gzip sizes)

BOOKING-MUI

AppTotal Size(raw/gzip)ChunksCode(raw/gzip)CSS(raw/gzip)
SurveyJS1.72 MB / 460.49KB (+1111.7 KB / +260.5 KB)21.72 MB / 459.70KB2.22 KB / 808.00B
RJSF738.68 KB / 236.31KB (+84.5 KB / +36.3 KB)2738.18 KB / 236.02KB518.00 B / 297.00B
VueForm719.50 KB / 200.03KB (+65.3 KB / 0 KB)2585.42 KB / 182.47KB134.08 KB / 17.56KB
FormEngine MUI654.18 KB / 200.56KB (0 KB / +0.5 KB)2654.00 KB / 200.40KB186.00 B / 169.00B

Legend: Bold values indicate the smallest value in each comparison. Smaller is better.

Performance Comparison (using gzip sizes)

BOOKING-MANTINE

AppTotal Size(raw/gzip)ChunksCode(raw/gzip)CSS(raw/gzip)
SurveyJS1.88 MB / 473.09KB (+1016.8 KB / +227.8 KB)21.67 MB / 441.39KB218.11 KB / 31.70KB
RJSF1015.70 KB / 285.08KB (+103.2 KB / +39.8 KB)2797.81 KB / 253.43KB217.89 KB / 31.65KB
FormEngine Mantine912.53 KB / 245.26KB2694.96 KB / 213.70KB217.56 KB / 31.56KB

Legend: Bold values indicate the smallest value in each comparison. Smaller is better.

Performance Comparison (using gzip sizes)

Detailed Chunk Information

FormEngine Core

Variant: booking

Bundle Breakdown:

CategorySizePercentage
Code843.10 KB / 265.27KB65.8%
CSS438.18 KB / 52.42KB34.2%

Chunks:

ChunkSize
assets/booking-DUAQ6otH.js843.10 KB
assets/booking-BlfDlKZh.css438.18 KB
Total1.25 MB / 317.70KB
Variant: booking-mantine

Bundle Breakdown:

CategorySizePercentage
Code694.96 KB / 213.70KB76.2%
CSS217.56 KB / 31.56KB23.8%

Chunks:

ChunkSize
assets/booking-mantine-B2hRX-7S.js694.96 KB
assets/booking-mantine-C8f_dOzp.css217.56 KB
Total912.53 KB / 245.26KB
Variant: booking-mui

Bundle Breakdown:

CategorySizePercentage
Code654.00 KB / 200.40KB100.0%
CSS186.00 B / 169.00B0.0%

Chunks:

ChunkSize
assets/booking-mui-LiU7y1Wu.js654.00 KB
assets/booking-mui-DRllDmdv.css186.00 B
Total654.18 KB / 200.56KB
Variant: login

Bundle Breakdown:

CategorySizePercentage
Code627.10 KB / 192.72KB58.9%
CSS438.18 KB / 52.42KB41.1%

Chunks:

ChunkSize
assets/login-Bd2nUmOs.js627.10 KB
assets/login-BlfDlKZh.css438.18 KB
Total1.04 MB / 245.15KB
Variant: login-mantine

Bundle Breakdown:

CategorySizePercentage
Code535.89 KB / 164.13KB91.5%
CSS50.09 KB / 8.05KB8.5%

Chunks:

ChunkSize
assets/login-mantine-pYNb_XLf.js535.89 KB
assets/login-mantine-BI1Zzk3o.css50.09 KB
Total585.98 KB / 172.18KB
Variant: login-mui

Bundle Breakdown:

CategorySizePercentage
Code625.18 KB / 189.70KB100.0%
CSS186.00 B / 169.00B0.0%

Chunks:

ChunkSize
assets/login-mui-CIvUxgLY.js625.18 KB
assets/login-mui-DRllDmdv.css186.00 B
Total625.36 KB / 189.86KB

RJSF

Variant: booking

Bundle Breakdown:

CategorySizePercentage
Code492.16 KB / 159.84KB80.7%
CSS117.50 KB / 19.38KB19.3%

Chunks:

ChunkSize
assets/booking-rvyicNto.js492.16 KB
assets/booking-DmSkEnsk.css117.50 KB
Total609.67 KB / 179.22KB
Variant: booking-mantine

Bundle Breakdown:

CategorySizePercentage
Code797.81 KB / 253.43KB78.5%
CSS217.89 KB / 31.65KB21.5%

Chunks:

ChunkSize
assets/booking-mantine-DSAm6u4F.js797.81 KB
assets/booking-mantine-C3yoQzbu.css217.89 KB
Total1015.70 KB / 285.08KB
Variant: booking-mui

Bundle Breakdown:

CategorySizePercentage
Code738.18 KB / 236.02KB99.9%
CSS518.00 B / 297.00B0.1%

Chunks:

ChunkSize
assets/booking-mui-BZ1iJCb6.js738.18 KB
assets/booking-mui-Bomwm_CU.css518.00 B
Total738.68 KB / 236.31KB
Variant: login

Bundle Breakdown:

CategorySizePercentage
Code483.10 KB / 157.12KB80.5%
CSS117.18 KB / 19.27KB19.5%

Chunks:

ChunkSize
assets/login-N4AesXcT.js483.10 KB
assets/login-nEkMQGGj.css117.18 KB
Total600.28 KB / 176.39KB
Variant: login-mantine

Bundle Breakdown:

CategorySizePercentage
Code788.75 KB / 250.64KB94.0%
CSS50.09 KB / 8.05KB6.0%

Chunks:

ChunkSize
assets/login-mantine-B1suMfwM.js788.75 KB
assets/login-mantine-BI1Zzk3o.css50.09 KB
Total838.84 KB / 258.70KB
Variant: login-mui

Bundle Breakdown:

CategorySizePercentage
Code728.99 KB / 233.21KB100.0%
CSS186.00 B / 169.00B0.0%

Chunks:

ChunkSize
assets/login-mui-HueaP7Oj.js728.99 KB
assets/login-mui-DRllDmdv.css186.00 B
Total729.17 KB / 233.38KB

SurveyJS

Variant: booking

Bundle Breakdown:

CategorySizePercentage
Code1.52 MB / 394.41KB83.9%
CSS299.04 KB / 34.45KB16.1%

Chunks:

ChunkSize
assets/booking-DH81Y4an.js1.52 MB
assets/booking-CsJwwvr9.css299.04 KB
Total1.82 MB / 428.87KB
Variant: booking-mantine

Bundle Breakdown:

CategorySizePercentage
Code1.67 MB / 441.39KB88.7%
CSS218.11 KB / 31.70KB11.3%

Chunks:

ChunkSize
assets/booking-mantine-OFiMJmGe.js1.67 MB
assets/booking-mantine-e9p_j4WA.css218.11 KB
Total1.88 MB / 473.09KB
Variant: booking-mui

Bundle Breakdown:

CategorySizePercentage
Code1.72 MB / 459.70KB99.9%
CSS2.22 KB / 808.00B0.1%

Chunks:

ChunkSize
assets/booking-mui-Dnoa8x7M.js1.72 MB
assets/booking-mui-DpJ2xjkN.css2.22 KB
Total1.72 MB / 460.49KB
Variant: login

Bundle Breakdown:

CategorySizePercentage
Code1.52 MB / 392.40KB83.9%
CSS299.04 KB / 34.45KB16.1%

Chunks:

ChunkSize
assets/login-CXZS-vJd.js1.52 MB
assets/login-CsJwwvr9.css299.04 KB
Total1.81 MB / 426.85KB
Variant: login-mantine

Bundle Breakdown:

CategorySizePercentage
Code1.35 MB / 352.95KB96.5%
CSS50.09 KB / 8.05KB3.5%

Chunks:

ChunkSize
assets/login-mantine-BQ4km_Mi.js1.35 MB
assets/login-mantine-BI1Zzk3o.css50.09 KB
Total1.39 MB / 361.00KB
Variant: login-mui

Bundle Breakdown:

CategorySizePercentage
Code1.47 MB / 395.26KB100.0%
CSS186.00 B / 169.00B0.0%

Chunks:

ChunkSize
assets/login-mui-B6gS6llY.js1.47 MB
assets/login-mui-DRllDmdv.css186.00 B
Total1.47 MB / 395.42KB

VueForm

Variant: booking

Bundle Breakdown:

CategorySizePercentage
Code585.41 KB / 182.46KB81.3%
CSS134.43 KB / 17.40KB18.7%

Chunks:

ChunkSize
assets/booking-C4FTwkKc.js585.41 KB
assets/booking-MdY-dgU2.css134.43 KB
Total719.85 KB / 199.86KB
Variant: booking-mui

Bundle Breakdown:

CategorySizePercentage
Code585.42 KB / 182.47KB81.4%
CSS134.08 KB / 17.56KB18.6%

Chunks:

ChunkSize
assets/booking-mui-DAJNHFw9.js585.42 KB
assets/booking-mui-BnsU-ma9.css134.08 KB
Total719.50 KB / 200.03KB
Variant: login

Bundle Breakdown:

CategorySizePercentage
Code391.36 KB / 131.61KB83.5%
CSS77.42 KB / 10.03KB16.5%

Chunks:

ChunkSize
assets/login-_PUgT0cv.js391.36 KB
assets/login-x6SVVLFq.css77.42 KB
Total468.78 KB / 141.64KB
Variant: login-mui

Bundle Breakdown:

CategorySizePercentage
Code392.90 KB / 131.79KB83.5%
CSS77.82 KB / 10.23KB16.5%

Chunks:

ChunkSize
assets/login-mui-BH1ta_kh.js392.90 KB
assets/login-mui-CWmCCSP1.css77.82 KB
Total470.72 KB / 142.02KB