From 6e239108d6c4d5cf9c9d6aabdd5127aad41dbdc8 Mon Sep 17 00:00:00 2001 From: yuanshan <42023847+piercezzs@users.noreply.github.com> Date: Mon, 2 Feb 2026 17:22:30 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=B8=BA=20Nuxt.js=20=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E6=B7=BB=E5=8A=A0=20JSON-LD=20=E7=BB=93=E6=9E=84?= =?UTF-8?q?=E5=8C=96=E6=95=B0=E6=8D=AE=E4=BB=A5=E6=8F=90=E5=8D=87=E6=90=9C?= =?UTF-8?q?=E7=B4=A2=E5=BC=95=E6=93=8E=E8=AF=86=E5=88=AB=E5=BA=A6=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nuxt.config.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) 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.", + }, + ]), + }, + ], }, },