其他分享
首页 > 其他分享> > nuxt项目去除data-n-head=“ssr“默认属性

nuxt项目去除data-n-head=“ssr“默认属性

作者:互联网

 修改nuxt.config.js添加hooks配置去除所有的data-n-head="ssr"默认属性

 代码:

hooks: {
    'render:route': (url, result) => {
      result.html = result.html.replace(/data-n-head=\"ssr\"/gi,'')
    }
  },

TDk字数长度是有限制的

title 最长60个字符 30个汉字 (手机端最长18个汉字)

description 最长150个字符 75个汉字

keywords 最长设置3-5个

标签格式

<title> </title>

<meta name="keywords" content="">

<meta name="description" content="">

title的注意事项

1、首页title写法:主关键词放最前面,网站名称放后面,主关键词1_主关键词2-网站名称

尽量命中更多用户搜索需求

2、栏目页title写法:长尾关键词-网站名称

3、文章页title写法:内容标题-网站名称

description 的注意事项

描述是标题的扩展,要做到通顺、包含关键词、页面内容词、吸引眼球

keywords 的注意事项

可以围绕标题展开,标题的同义词或近义词

词语间要用英文“,”隔开,因为计算机只对英语的敏感性较高,对汉语的敏感性不高

标签:head,title,关键词,ssr,result,data
来源: https://blog.csdn.net/qq_42661587/article/details/121931085