Update prefix, make linter happy
This commit is contained in:
parent
a619037fa7
commit
2f8682163e
|
|
@ -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',
|
||||||
|
|
|
||||||
|
|
@ -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}",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue