2017-11-17 22:11:18 -05:00
|
|
|
// THIS IS THE `vanilla` THEME PACK FILE!!
|
|
|
|
// IT'S HERE FOR UPSTREAM COMPATIBILITY!!
|
|
|
|
// THE `glitch` PACK FILE IS IN `themes/glitch/index.js`!!
|
|
|
|
|
2017-05-30 09:11:15 -04:00
|
|
|
import loadPolyfills from '../mastodon/load_polyfills';
|
2017-05-11 05:26:06 -04:00
|
|
|
|
2017-07-30 13:28:21 -04:00
|
|
|
// import default stylesheet with variables
|
2017-11-18 18:12:52 -05:00
|
|
|
import 'font-awesome/css/font-awesome.css';
|
2017-10-16 16:24:44 -04:00
|
|
|
import '../styles/application.scss';
|
2017-07-30 13:28:21 -04:00
|
|
|
|
|
|
|
require.context('../images/', true);
|
|
|
|
|
2017-07-17 18:19:02 -04:00
|
|
|
loadPolyfills().then(() => {
|
|
|
|
require('../mastodon/main').default();
|
|
|
|
}).catch(e => {
|
2017-06-11 04:42:42 -04:00
|
|
|
console.error(e);
|
2017-05-30 09:11:15 -04:00
|
|
|
});
|