This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-11-17 19:11:18 -08: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 06:11:15 -07:00
|
|
|
import loadPolyfills from '../mastodon/load_polyfills';
|
2017-05-11 02:26:06 -07:00
|
|
|
|
2017-07-30 10:28:21 -07:00
|
|
|
// import default stylesheet with variables
|
|
|
|
require('font-awesome/css/font-awesome.css');
|
2017-10-16 13:24:44 -07:00
|
|
|
|
|
|
|
import '../styles/application.scss';
|
2017-07-30 10:28:21 -07:00
|
|
|
|
|
|
|
require.context('../images/', true);
|
|
|
|
|
2017-07-17 15:19:02 -07:00
|
|
|
loadPolyfills().then(() => {
|
|
|
|
require('../mastodon/main').default();
|
|
|
|
}).catch(e => {
|
2017-06-11 01:42:42 -07:00
|
|
|
console.error(e);
|
2017-05-30 06:11:15 -07:00
|
|
|
});
|