frontend/composables/Config.ts

13 lines
364 B
TypeScript
Raw Normal View History

export const useConfig = () => {
return {
NOTES_PER_PAGE: 20,
RECOMMENDED_CLIENTS: [
{
name: "Megalodon",
icon: "https://sk22.github.io/megalodon/mastodon/src/main/res/mipmap-xhdpi/ic_launcher_round.png",
link: "https://sk22.github.io/megalodon/",
},
],
};
};