2017-05-30 13:11:15 +00:00
|
|
|
import loadPolyfills from '../mastodon/load_polyfills';
|
2017-05-11 09:26:06 +00:00
|
|
|
|
2017-07-30 17:28:21 +00:00
|
|
|
// import default stylesheet with variables
|
|
|
|
require('font-awesome/css/font-awesome.css');
|
|
|
|
require('mastodon-application-style');
|
|
|
|
|
|
|
|
require.context('../images/', true);
|
|
|
|
|
2017-07-17 22:19:02 +00:00
|
|
|
loadPolyfills().then(() => {
|
|
|
|
require('../mastodon/main').default();
|
|
|
|
}).catch(e => {
|
2017-06-11 08:42:42 +00:00
|
|
|
console.error(e);
|
2017-05-30 13:11:15 +00:00
|
|
|
});
|