feat: ajouter la page de chat et configurer les routes associées

This commit is contained in:
2025-12-18 22:47:11 +01:00
parent 4bbf401636
commit ab0ad65d5e
5 changed files with 38 additions and 3 deletions

13
app/pages/chat.vue Normal file
View File

@@ -0,0 +1,13 @@
<script lang="ts" setup>
</script>
<template>
<div>
CHAT
</div>
</template>
<style scoped>
</style>

View File

@@ -124,4 +124,8 @@ export default defineNuxtConfig({
},
},
},
experimental: {
viewTransition: true
},
})

View File

@@ -1,3 +1,17 @@
{
"extends": "./.nuxt/tsconfig.json"
"files": [],
"references": [
{
"path": "./.nuxt/tsconfig.app.json"
},
{
"path": "./.nuxt/tsconfig.server.json"
},
{
"path": "./.nuxt/tsconfig.shared.json"
},
{
"path": "./.nuxt/tsconfig.node.json"
}
]
}

View File

@@ -141,7 +141,7 @@ interface Nav {
export const navs: readonly Nav[] = [
{ label: { en: 'home', fr: 'accueil', es: 'inicio' }, to: '/', icon: 'house-duotone' },
{ label: { en: 'chat', fr: 'chat', es: 'chat' }, to: '/', icon: 'chat-circle-dots-duotone' },
{ label: { en: 'chat', fr: 'chat', es: 'chat' }, to: '/chat', icon: 'chat-circle-dots-duotone' },
{
label: { en: 'resume', fr: 'cv', es: 'currículum' },
icon: 'address-book-duotone',

View File

@@ -14,5 +14,9 @@
"binding": "CACHE",
"id": "f0766ace1d24423ba6e5cac4fb8f2054"
}
]
],
"ai": {
"binding": "AI",
"remote": true
}
}