2021-07-25 13:27:15 +00:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
2022-09-28 13:28:03 +00:00
|
|
|
|
<title>Vikunja</title>
|
2021-07-25 13:27:15 +00:00
|
|
|
|
<meta name="description" content="Vikunja (/vɪˈkuːnjə/) - The to-do app to organize your life.">
|
2021-07-28 20:58:12 +00:00
|
|
|
|
<meta name="theme-color" content="#1973ff"/>
|
2021-07-25 13:27:15 +00:00
|
|
|
|
|
|
|
|
|
<link rel="icon" href="/favicon.ico">
|
2021-07-28 20:58:12 +00:00
|
|
|
|
<link rel="apple-touch-icon" href="/images/icons/apple-touch-icon-180x180.png"/>
|
2023-01-21 11:01:32 +00:00
|
|
|
|
<!--__vite-plugin-inject-preload__-->
|
2021-07-25 13:27:15 +00:00
|
|
|
|
</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>
|
2022-05-22 16:20:06 +02:00
|
|
|
|
//
|
2021-07-25 13:27:15 +00:00
|
|
|
|
// 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'
|
2022-05-22 16:20:06 +02:00
|
|
|
|
// Enable error tracking with sentry. If this is set to true, will send anonymized data to
|
2021-10-26 18:53:17 +00:00
|
|
|
|
// our sentry instance to notify us of potential problems.
|
|
|
|
|
window.SENTRY_ENABLED = false
|
|
|
|
|
window.SENTRY_DSN = 'https://85694a2d757547cbbc90cd4b55c5a18d@o1047380.ingest.sentry.io/6024480'
|
2023-04-03 13:53:28 +02:00
|
|
|
|
// If enabled, allows the user to nest projects infinitely, instead of the default 2 levels.
|
|
|
|
|
// This setting might change in the future or be removed completely.
|
2023-04-12 10:39:10 +02:00
|
|
|
|
window.PROJECT_INFINITE_NESTING_ENABLED = false
|
2023-06-02 13:51:29 +02:00
|
|
|
|
// Allow changing the logo and other icons based on various occasions throughout the year.
|
|
|
|
|
window.ALLOW_ICON_CHANGES = true
|
2023-08-23 16:13:29 +00:00
|
|
|
|
// Allow using a custom logo via external URL.
|
|
|
|
|
window.CUSTOM_LOGO_URL = ''
|
2021-07-25 13:27:15 +00:00
|
|
|
|
</script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|