diff --git a/nuxt.config.ts b/nuxt.config.ts index e7397d9..1c418d2 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -78,6 +78,29 @@ export default defineNuxtConfig({ ], // 默认标题模板 titleTemplate: "%s | FiEE, Inc.", + // 结构化数据:明确告知搜索引擎官方品牌身份 + script: [ + { + type: "application/ld+json", + children: JSON.stringify([ + { + "@context": "https://schema.org", + "@type": "WebSite", + name: "FiEE, Inc.", + url: "https://www.fiee.com", + }, + { + "@context": "https://schema.org", + "@type": "Organization", + name: "FiEE, Inc.", + url: "https://www.fiee.com", + logo: "https://www.fiee.com/logo.png", + description: + "FiEE, Inc. is a leading electronic manufacturing services provider, offering one-stop SaaS solutions and specialized business information.", + }, + ]), + }, + ], }, },