mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-25 22:31:36 +01:00
2d43547934
Port 730e2127e1
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
12 lines
234 B
JavaScript
12 lines
234 B
JavaScript
import Rails from '@rails/ujs';
|
|
import 'font-awesome/css/font-awesome.css';
|
|
|
|
export function start() {
|
|
require.context('@/images/', true, /\.(jpg|png|svg)$/);
|
|
|
|
try {
|
|
Rails.start();
|
|
} catch (e) {
|
|
// If called twice
|
|
}
|
|
}
|