mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-07 23:44:33 +00:00
14 lines
325 B
JavaScript
14 lines
325 B
JavaScript
import loadPolyfills from '../mastodon/load_polyfills';
|
|
|
|
// import default stylesheet with variables
|
|
require('font-awesome/css/font-awesome.css');
|
|
import 'styles/application';
|
|
|
|
require.context('../images/', true);
|
|
|
|
loadPolyfills().then(() => {
|
|
require('../mastodon/main').default();
|
|
}).catch(e => {
|
|
console.error(e);
|
|
});
|