ed9866211d
添加中英文的应用名称和描述配置 优化全局和首页的SEO meta设置 配置响应式的标题模板和国际化meta信息
39 lines
868 B
TypeScript
39 lines
868 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
app: {
|
|
head: {
|
|
charset: 'utf-8',
|
|
viewport: 'width=device-width, initial-scale=1, maximum-scale=1',
|
|
},
|
|
},
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
css: ['~/assets/css/tailwind.css'],
|
|
modules: [
|
|
'@nuxtjs/i18n',
|
|
'@nuxt/hints',
|
|
'@nuxt/icon',
|
|
'@nuxtjs/tailwindcss',
|
|
'@pinia/nuxt'
|
|
],
|
|
tailwindcss: {
|
|
exposeConfig: true,
|
|
viewer: true,
|
|
},
|
|
postcss: {
|
|
plugins: {
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
},
|
|
},
|
|
i18n: {
|
|
locales: [
|
|
{ code: 'zh', name: '中文', language: 'zh-CN', file: 'zh.json' },
|
|
{ code: 'en', name: 'English', language: 'en-US', file: 'en.json' },
|
|
],
|
|
defaultLocale: 'zh',
|
|
strategy: 'no_prefix',
|
|
detectBrowserLanguage: false,
|
|
},
|
|
})
|