diff --git a/src/layouts/ProfileLayout/ProfileLayout.ts b/src/layouts/ProfileLayout/ProfileLayout.ts index dbc2f66b5..383886a39 100644 --- a/src/layouts/ProfileLayout/ProfileLayout.ts +++ b/src/layouts/ProfileLayout/ProfileLayout.ts @@ -4,7 +4,7 @@ export function ProfileLayout(children: string) { return ( `
- + diff --git a/vite.config.ts b/vite.config.ts index 5152cdc0e..bf3946b4e 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -18,7 +18,10 @@ export default defineConfig({ serverError: resolve(root, 'serverError.html'), notFound: resolve(root, 'notFound.html'), chatSelect: resolve(root, 'chatSelect.html'), - chat: resolve(root, 'chat.html') + chat: resolve(root, 'chat.html'), + profile: resolve(root, 'profile.html'), + changeProfile: resolve(root, 'changeProfile.html'), + changePassword: resolve(root, 'changePassword.html'), } } }