Spaces:
Sleeping
Sleeping
| // https://nuxt.com/docs/api/configuration/nuxt-config | |
| export default defineNuxtConfig({ | |
| compatibilityDate: '2025-07-15', | |
| devtools: { enabled: true }, | |
| telemetry: false, | |
| modules: ['@nuxtjs/tailwindcss'], | |
| app: { | |
| head: { | |
| htmlAttrs: { | |
| lang: 'zh-CN' | |
| }, | |
| title: 'Nuxt 展示应用', | |
| meta: [ | |
| { charset: 'utf-8' }, | |
| { name: 'viewport', content: 'width=device-width, initial-scale=1' }, | |
| { hid: 'description', name: 'description', content: '基于 Nuxt.js 的现代化响应式展示应用' } | |
| ] | |
| } | |
| } | |
| }) | |