bigbuffet-rw/app/application.ts

15 lines
327 B
TypeScript
Raw Normal View History

import loadPolyfills from './soapbox/load_polyfills';
// @ts-ignore
2020-09-27 18:27:27 -07:00
require.context('./images/', true);
2021-09-10 17:30:47 -07:00
// Load stylesheet
2022-03-21 11:09:01 -07:00
require('react-datepicker/dist/react-datepicker.css');
2021-09-10 17:30:47 -07:00
require('./styles/application.scss');
loadPolyfills().then(() => {
require('./soapbox/main').default();
}).catch(e => {
console.error(e);
});