Files
codey.lol/src/config.js

21 lines
571 B
JavaScript
Raw Normal View History

2025-06-18 07:46:59 -04:00
export const metaData = {
baseUrl: "https://codey.lol/",
title: "CODEY STUFF",
name: "codey.lol",
owner: "codey",
ogImage: "/images/favicon.png",
description: "CODEY STUFF!",
shareTitle: "CODEY STUFF",
shareDescription: "CODEY STUFF!",
shareImageAlt: "/images/favicon.png",
2025-06-18 07:46:59 -04:00
};
2025-07-25 10:06:39 -04:00
export const API_URL = "https://api.codey.lol";
export const RADIO_API_URL = "https://radio-api.codey.lol";
2025-06-18 07:46:59 -04:00
export const socialLinks = {
};
2025-07-19 22:57:35 -04:00
export const MAJOR_VERSION = "0.3"
2025-08-20 15:57:59 -04:00
export const RELEASE_FLAG = null;
2025-08-14 11:40:02 -04:00
export const ENVIRONMENT = import.meta.env.DEV ? "Dev" : "Prod";