Update prefix, make linter happy

This commit is contained in:
Christian Cueni 2022-04-14 14:05:21 +02:00
parent a619037fa7
commit 2f8682163e
2 changed files with 6 additions and 1 deletions

View File

@ -18,7 +18,11 @@ const router = createRouter({
component: HomeView, component: HomeView,
beforeEnter(to, from, next) { beforeEnter(to, from, next) {
window.location.href = "/sso/login/"; window.location.href = "/sso/login/";
} },
},
{
path: '/profile',
component: () => import('../views/ProfileView.vue'),
}, },
{ {
path: '/learningpath', path: '/learningpath',

View File

@ -1,5 +1,6 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires // eslint-disable-next-line @typescript-eslint/no-var-requires
module.exports = { module.exports = {
prefix: 'vbv-',
content: [ content: [
"./index.html", "./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}", "./src/**/*.{vue,js,ts,jsx,tsx}",