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 + } ] } }