mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 21:21:11 +01:00
14 lines
334 B
JavaScript
14 lines
334 B
JavaScript
import loadPolyfills from '../mastodon/load_polyfills';
|
|
|
|
// import default stylesheet with variables
|
|
require('font-awesome/css/font-awesome.css');
|
|
|
|
import '../styles/application.scss';
|
|
|
|
require.context('../images/', true);
|
|
|
|
loadPolyfills().then(() => {
|
|
require('../mastodon/main').default();
|
|
}).catch(e => {
|
|
console.error(e);
|
|
});
|