mastodon/app/javascript/packs/application.js

19 lines
482 B
JavaScript
Raw Normal View History

2017-11-18 03:11:18 +00:00
// THIS IS THE `vanilla` THEME PACK FILE!!
// IT'S HERE FOR UPSTREAM COMPATIBILITY!!
// THE `glitch` PACK FILE IS IN `themes/glitch/index.js`!!
import loadPolyfills from '../mastodon/load_polyfills';
// import default stylesheet with variables
require('font-awesome/css/font-awesome.css');
2017-10-16 20:24:44 +00:00
import '../styles/application.scss';
require.context('../images/', true);
loadPolyfills().then(() => {
require('../mastodon/main').default();
}).catch(e => {
console.error(e);
});