mirror of
				https://github.com/bartvdbraak/omnidash.git
				synced 2025-10-31 00:19:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			665 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			665 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| const SITE_URL =
 | |
| 	import.meta.env.VERCEL_ENV === 'preview' ? import.meta.env.VERCEL_URL : 'omnidash.io';
 | |
| 
 | |
| export const debugForms = import.meta.env.DEBUG_FORMS === 'true' || false;
 | |
| 
 | |
| export const siteConfig = {
 | |
| 	name: 'Omnidash',
 | |
| 	author: 'Bart van der Braak',
 | |
| 	url: SITE_URL,
 | |
| 	description: 'Self-hostable dashboard using connectors to a multitude of ticketing systems.',
 | |
| 	ogImage: `https://${SITE_URL}/og.png`,
 | |
| 	links: {
 | |
| 		gitHubProfile: 'https://github.com/bartvdbraak',
 | |
| 		gitHubProject: 'https://github.com/bartvdbraak/omnidash'
 | |
| 	},
 | |
| 	keywords: `Ticket,Dashboard,Self-hosted,${SITE_URL},Bart van der Braak,Omnidash`
 | |
| };
 | |
| 
 | |
| export type SiteConfig = typeof siteConfig;
 |