feature/3_env_file #9

Merged
philipp merged 6 commits from feature/3_env_file into dev 2021-03-05 18:09:16 +00:00
Showing only changes of commit 987ac4d02c - Show all commits

View File

@ -28,17 +28,17 @@ const Privacy = import('./components/Privacy.vue');
const Register = import('./components/Register.vue'); const Register = import('./components/Register.vue');
const Profile = import('./components/Profile.vue'); const Profile = import('./components/Profile.vue');
// //
let routes = []; let routes = [ { path: '/', component: EnvError } ];
if (config.baseurl && config.documentserver_key) { if (typeof config !== 'undefined') {
routes = [ if (config.baseurl && config.documentserver_key) {
{ path: '/', component: Home }, routes = [
{ path: '/imprint', component: Imprint }, { path: '/', component: Home },
{ path: '/privacy', component: Privacy }, { path: '/imprint', component: Imprint },
{ path: '/register', component: Register }, { path: '/privacy', component: Privacy },
{ path: '/profile', component: Profile } { path: '/register', component: Register },
]; { path: '/profile', component: Profile }
} else { ];
routes = [ { path: '/', component: EnvError } ]; }
} }
const router = createRouter({ const router = createRouter({
history: createWebHistory(), history: createWebHistory(),