mastodon/app/javascript/mastodon/common.js
2025-05-06 22:02:25 +02:00

13 lines
226 B
JavaScript

import Rails from '@rails/ujs';
export function start() {
// TODO: Find alternative to this
// require.context('../images/', true, /\.(jpg|png|svg)$/);
try {
Rails.start();
} catch {
// If called twice
}
}