-
-
+
+
+
+
+
+
+ {{ msg.role === 'ai' ? '🤖' : '👤' }}
+
+
+
{{ msg.content }}
+
{{ msg.timestamp }}
+
+
+
+
+
+
+
+
+
+
diff --git a/nuxt.config.ts b/nuxt.config.ts
index b6baa24..76e2c94 100644
--- a/nuxt.config.ts
+++ b/nuxt.config.ts
@@ -1,5 +1,14 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
- compatibilityDate: '2025-07-15',
- devtools: { enabled: true }
+ compatibilityDate: '2025-01-22',
+ devtools: { enabled: true },
+ app: {
+ head: {
+ title: 'AI Chat Interview',
+ meta: [
+ { charset: 'utf-8' },
+ { name: 'viewport', content: 'width=device-width, initial-scale=1' }
+ ]
+ }
+ }
})
diff --git a/package.json b/package.json
index f19701d..7358fd8 100644
--- a/package.json
+++ b/package.json
@@ -1,5 +1,5 @@
{
- "name": "my-app",
+ "name": "ai-chat-interview",
"private": true,
"type": "module",
"scripts": {