add a fake route

This commit is contained in:
Csaba Tuncsik 2024-11-27 16:16:12 +01:00
parent 906dffe84c
commit a3bfa33647
No known key found for this signature in database

View file

@ -41,7 +41,12 @@ const defaultOptions = {
TelemetryPlugin, TelemetryPlugin,
createRouter({ createRouter({
history: createWebHistory(), history: createWebHistory(),
routes: [], routes: [
{
path: '/',
component: { template: '<div></div>' },
},
],
}), }),
], ],
}, },