10 lines
215 B
JavaScript
10 lines
215 B
JavaScript
import loadPolyfills from './soapbox/load_polyfills';
|
|
import { start } from './soapbox/common';
|
|
|
|
start();
|
|
|
|
loadPolyfills().then(() => {
|
|
require('./soapbox/main').default();
|
|
}).catch(e => {
|
|
console.error(e);
|
|
});
|