一、页面TDK(标题、描述、关键词)设置全局设置配置nuxt.config.js文件export default { //... head: { htmlAttrs: { lang: 'en' }, meta: [ { charset: 'utf-8' }, { name: 'viewport', content: 'width=device-width, initial-scale=1' }, ], link: [ { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' } ] }, //... }在每个页面的配置//首页index.vue export default{ ...//其他代码块 head: { title: "网站标题",
修改nuxt.config.js文件 build: { // 将内嵌CSS样式提取到外部 extractCSS: { allChunks: true }, }
铅笔Naruto
前端攻城狮