5294528148
Co-authored-by: Copilot <copilot@github.com>
32 lines
614 B
TypeScript
32 lines
614 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: "2025-07-15",
|
|
devtools: { enabled: true },
|
|
css: ["~/assets/css/element-plus.css"],
|
|
|
|
app: {
|
|
head: {
|
|
title: "AI Art Studio",
|
|
titleTemplate: "%s",
|
|
htmlAttrs: {
|
|
lang: "zh-CN"
|
|
},
|
|
meta: [{ name: "description", content: "AI Art Studio" }]
|
|
}
|
|
},
|
|
|
|
ogImage: {
|
|
zeroRuntime: true
|
|
},
|
|
|
|
modules: [
|
|
"@nuxt/eslint",
|
|
"@nuxtjs/i18n",
|
|
"@nuxtjs/seo",
|
|
"@element-plus/nuxt",
|
|
"@nuxtjs/tailwindcss",
|
|
"@vueuse/nuxt",
|
|
"@pinia/nuxt"
|
|
]
|
|
});
|