diff --git a/client/src/router/index.ts b/client/src/router/index.ts index ac9492a7..90ef16a7 100644 --- a/client/src/router/index.ts +++ b/client/src/router/index.ts @@ -18,7 +18,11 @@ const router = createRouter({ component: HomeView, beforeEnter(to, from, next) { window.location.href = "/sso/login/"; - } + }, + }, + { + path: '/profile', + component: () => import('../views/ProfileView.vue'), }, { path: '/learningpath', diff --git a/client/tailwind.config.js b/client/tailwind.config.js index fa4a731a..c54471ce 100644 --- a/client/tailwind.config.js +++ b/client/tailwind.config.js @@ -1,5 +1,6 @@ // eslint-disable-next-line @typescript-eslint/no-var-requires module.exports = { + prefix: 'vbv-', content: [ "./index.html", "./src/**/*.{vue,js,ts,jsx,tsx}",