From 9ec95590e8c627366dad6cee2b407f9a03923b82 Mon Sep 17 00:00:00 2001 From: WindowBird <13870814+windows-bird@user.noreply.gitee.com> Date: Wed, 15 Oct 2025 11:32:16 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=9A=E8=BF=87=E5=85=A8=E5=B1=80=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E8=A7=A3=E5=86=B3=E7=BD=91=E9=A1=B5jquery=EF=BC=8Cboo?= =?UTF-8?q?tstrap=E5=8A=A0=E8=BD=BD=E6=97=B6=E5=BA=8F=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nuxt.config.ts | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/nuxt.config.ts b/nuxt.config.ts index cd540f4..5b245dd 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -12,15 +12,7 @@ export default defineNuxtConfig({ }, // Sitemap配置 - sitemap: { - hostname: 'https://ccttiot.com', - gzip: true, - routes: [ - '/', - '/about', - '/sharedSolutions/eBike' - ] - }, + sitemap: {}, fonts: { providers: { @@ -70,6 +62,18 @@ export default defineNuxtConfig({ {rel: 'icon', type: 'image/x-icon', href: '/favicon.ico'}, {rel: 'apple-touch-icon', href: '/apple-touch-icon.png'}, {rel: 'manifest', href: '/manifest.json'} + ], + script: [ + { + src: '/js/jquery-1.10.2.js', + type: 'text/javascript', + defer: true + }, + { + src: '/js/bootstrap.min.js', + type: 'text/javascript', + defer: true + } ] } }