about summary refs log tree commit diff
path: root/app/javascript/mastodon/common.js
blob: 8f350530368bab6c3286caa3f36c2970d4ef3241 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import Rails from '@rails/ujs';

export function start() {
  require('font-awesome/css/font-awesome.css');
  require.context('../images/', true);

  try {
    Rails.start();
  } catch (e) {
    // If called twice
  }
}