40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
ssr: true,
|
|
|
|
app: {
|
|
head: {
|
|
title: 'Veridian',
|
|
htmlAttrs: {
|
|
lang: 'en'
|
|
},
|
|
meta: [
|
|
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
|
|
{ name: 'description', content: 'A chat-based AI assistant for your LLMs.' },
|
|
{ name: 'keywords', content: 'LLM, AI, Chat, Assistant, Agent, LLMs, OpenAI, GPT, GPT-3, GPT-4, Claude, ChatGPT, Whisper, Bard, Bing, Anthropic, DeepAI, Dolly, StableLM, Vicuna, Llama, Alpaca, ChatGLM, MOSS, MPT, Codex, Codex2, Codex 3, Codex 4, Falcon, Flan-T5, T5, Llama2, LLaMA, LLaMA2, StableLM, OpenAssistant, OpenChat' }
|
|
]
|
|
}
|
|
},
|
|
|
|
vite: {
|
|
server: {
|
|
allowedHosts: true,
|
|
}
|
|
},
|
|
|
|
modules: ['@nuxt/hints', '@nuxt/icon', '@unocss/nuxt', '@nuxtjs/color-mode'],
|
|
|
|
features: {
|
|
inlineStyles: true,
|
|
},
|
|
|
|
colorMode: {
|
|
preference: 'system',
|
|
fallback: 'dark',
|
|
storage: 'cookie',
|
|
},
|
|
|
|
devtools: { enabled: true },
|
|
|
|
compatibilityDate: '2025-07-15',
|
|
}) |