export default defineNuxtConfig({ compatibilityDate: "2026-07-10", devtools: { enabled: false }, devServer: { host: process.env.NUXT_HOST || "0.0.0.0", port: Number(process.env.NUXT_PORT || 3000), }, css: ["~/assets/css/main.css"], modules: ["@nuxtjs/tailwindcss"], app: { head: { htmlAttrs: { lang: "zh-CN", }, viewport: "width=device-width, initial-scale=1", link: [ { rel: "icon", type: "image/svg+xml", href: "/brand/logo.svg" }, ], }, }, });