15 lines
352 B
TypeScript
15 lines
352 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
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' }
|
|
]
|
|
}
|
|
}
|
|
})
|