CHUNK ALL THE THINGS!!!

This commit is contained in:
Alex Gleason 2023-10-07 18:48:54 -05:00
parent ed11c2bc2d
commit 69d2911ee4
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -10,9 +10,9 @@ import { checkOnboardingStatus } from '../actions/onboarding';
import { preload } from '../actions/preload';
import { store } from '../store';
import SoapboxHead from './soapbox-head';
import SoapboxLoad from './soapbox-load';
import SoapboxMount from './soapbox-mount';
const SoapboxHead = React.lazy(() => import('./soapbox-head'));
const SoapboxLoad = React.lazy(() => import('./soapbox-load'));
const SoapboxMount = React.lazy(() => import('./soapbox-mount'));
// Configure global functions for developers
createGlobals(store);