 489014944a
			
		
	
	489014944a
	
	
	
		
			
			Co-authored-by: Dominik Pschenitschni <mail@celement.de> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/2980 Co-authored-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de> Co-committed-by: Dominik Pschenitschni <dpschen@noreply.kolaente.de>
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | ||
| <html lang="en">
 | ||
| <head>
 | ||
| 	<meta charset="utf-8">
 | ||
| 	<meta name="viewport" content="width=device-width,initial-scale=1.0">
 | ||
| 	<title>Vikunja</title>
 | ||
| 	<meta name="description" content="Vikunja (/vɪˈkuːnjə/) - The to-do app to organize your life.">
 | ||
| 	<meta name="theme-color" content="#1973ff"/>
 | ||
| 
 | ||
| 	<link rel="icon" href="/favicon.ico">
 | ||
| 	<link rel="apple-touch-icon" href="/images/icons/apple-touch-icon-180x180.png"/>
 | ||
| 	<!--__vite-plugin-inject-preload__-->
 | ||
| </head>
 | ||
| <body>
 | ||
| <noscript>
 | ||
| 	<strong>We're sorry but Vikunja doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
 | ||
| </noscript>
 | ||
| <div id="app"></div>
 | ||
| <script type="module" src="/src/main.ts"></script>
 | ||
| <script>
 | ||
|     //
 | ||
| 	// This variable points the frontend to the api.
 | ||
| 	// It has to be the full url, including the last /api/v1 part and port.
 | ||
| 	// You can change this if your api is not reachable on the same port as the frontend.
 | ||
| 	window.API_URL = 'http://localhost:3456/api/v1'
 | ||
|     // Enable error tracking with sentry. If this is set to true, will send anonymized data to 
 | ||
| 	// our sentry instance to notify us of potential problems.
 | ||
| 	window.SENTRY_ENABLED = false
 | ||
| 	window.SENTRY_DSN = 'https://85694a2d757547cbbc90cd4b55c5a18d@o1047380.ingest.sentry.io/6024480'
 | ||
| </script>
 | ||
| </body>
 | ||
| </html>
 |