added https withe self sign ssl to backentd and healthcheck to frontend

This commit is contained in:
2025-09-10 22:07:15 +02:00
parent cf072cee0c
commit e7b964078c
12 changed files with 234 additions and 19 deletions

View File

@@ -6,7 +6,9 @@ const routes = [
{ path: '', component: () => import('pages/IndexPage.vue') },
{ path: 'test_DartPicker', component: () => import('pages/testDartPickerPage.vue') },
{ path: 'test_NumbersPage', component: () => import('pages/testNumbersPage.vue') },
{ path: 'test_WebSpeechApi', component: () => import('pages/testWebSpeechApi.vue') }
{ path: 'test_WebSpeechApi', component: () => import('pages/testWebSpeechApi.vue') },
{ path: 'error', component: () => import('pages/ErrorPage.vue') }
],
},