Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
/**
* Global polyfills
*/
import '@automattic/calypso-polyfills';
import page from '@automattic/calypso-router';
import { setupLocale } from 'calypso/boot/locale';
import { render } from 'calypso/controller/web-util';
import { initializeCurrentUser } from 'calypso/lib/user/shared-utils';
import initLoginSection from 'calypso/login';
import { getStateFromCache } from 'calypso/state/initial-state';
import { setStore } from 'calypso/state/redux-store';
import { setupMiddlewares, configureReduxStore } from './common';
import createStore from './store';
import 'calypso/assets/stylesheets/style.scss';
// goofy import for environment badge, which is SSR'd
import 'calypso/components/environment-badge/style.scss';
async function main() {
const currentUser = await initializeCurrentUser();
const store = createStore();
setStore( store, getStateFromCache( currentUser?.ID ) );
configureReduxStore( currentUser, store );
setupMiddlewares( currentUser, store );
setupLocale( currentUser, store );
page( '*', ( context, next ) => {
context.store = store;
next();
} );
page.exit( '*', ( context, next ) => {
context.store = store;
next();
} );
initLoginSection( ( route, ...handlers ) => page( route, ...handlers, render ) );
page.start();
}
main();