* fix: set vite base path during deploy build + allow google fonts * ci: only set vite base path if build is for production release * test: add html-validate ignore rules for vite generated content that is valid * fix: show buttons on regular sessions without agenda materials + link to legacy agenda * fix: temporarily hide left menu on agenda-neue and floor-plan-neue * fix: set resize handler to whole app * fix: apply html-validate ignore to agenda-neue only + deploy/build.sh fix * test: change old agenda cypress to always take the same elements to avoid #3564
24 lines
529 B
JavaScript
24 lines
529 B
JavaScript
import { createRouter, createWebHistory } from 'vue-router'
|
|
|
|
export default createRouter({
|
|
history: createWebHistory(),
|
|
routes: [
|
|
{
|
|
name: 'agenda',
|
|
path: '/meeting/:meetingNumber(\\d+)?/agenda-neue',
|
|
component: () => import('./Agenda.vue'),
|
|
meta: {
|
|
hideLeftMenu: true
|
|
}
|
|
},
|
|
{
|
|
name: 'floor-plan',
|
|
path: '/meeting/:meetingNumber(\\d+)?/floor-plan-neue',
|
|
component: () => import('./FloorPlan.vue'),
|
|
meta: {
|
|
hideLeftMenu: true
|
|
}
|
|
}
|
|
]
|
|
})
|