mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
feat(cli): support site.headHtml option (#10807)
* feat(cli): support site.headHtml option * docs: update * docs: update
This commit is contained in:
parent
53162941da
commit
1ac1bb94e7
@ -380,12 +380,19 @@ Customize iframe URL.
|
|||||||
|
|
||||||
Customize HTML meta tag, key means name, value means content.
|
Customize HTML meta tag, key means name, value means content.
|
||||||
|
|
||||||
|
### site.headHtml
|
||||||
|
|
||||||
|
- Type: `string`
|
||||||
|
- Default: `undefined`
|
||||||
|
|
||||||
|
Insert a custom HTML content in the `<head>` tag.
|
||||||
|
|
||||||
### site.enableVConsole
|
### site.enableVConsole
|
||||||
|
|
||||||
- Type: `boolean`
|
- Type: `boolean`
|
||||||
- Default: `false`
|
- Default: `false`
|
||||||
|
|
||||||
Should use [vConsole](https://github.com/Tencent/vConsole) to debug when dev. For mobile.
|
Whether to enable [vConsole](https://github.com/Tencent/vConsole) debugging in dev, usually used for mobile debugging.
|
||||||
|
|
||||||
## PostCSS
|
## PostCSS
|
||||||
|
|
||||||
|
@ -337,7 +337,7 @@ module.exports = {
|
|||||||
### site.baiduAnalytics
|
### site.baiduAnalytics
|
||||||
|
|
||||||
- Type: `object`
|
- Type: `object`
|
||||||
- Default: `undefied`
|
- Default: `undefined`
|
||||||
|
|
||||||
文档网站的百度统计配置,添加这项配置后,会自动在构建文档网站时加载百度统计的脚本。
|
文档网站的百度统计配置,添加这项配置后,会自动在构建文档网站时加载百度统计的脚本。
|
||||||
|
|
||||||
@ -384,6 +384,13 @@ module.exports = {
|
|||||||
|
|
||||||
配置 HTML 中的 meta 标签,对象的 key 为 name,value 为 content。
|
配置 HTML 中的 meta 标签,对象的 key 为 name,value 为 content。
|
||||||
|
|
||||||
|
### site.headHtml
|
||||||
|
|
||||||
|
- Type: `string`
|
||||||
|
- Default: `undefined`
|
||||||
|
|
||||||
|
在 `<head>` 标签中插入一段自定义的 HTML 内容。
|
||||||
|
|
||||||
### site.enableVConsole
|
### site.enableVConsole
|
||||||
|
|
||||||
- Type: `boolean`
|
- Type: `boolean`
|
||||||
|
@ -15,6 +15,9 @@
|
|||||||
<meta http-equiv="Cache-Control" content="no-cache" />
|
<meta http-equiv="Cache-Control" content="no-cache" />
|
||||||
<meta http-equiv="Pragma" content="no-cache" />
|
<meta http-equiv="Pragma" content="no-cache" />
|
||||||
<meta http-equiv="Expires" content="0" />
|
<meta http-equiv="Expires" content="0" />
|
||||||
|
<% if (headHtml) { %>
|
||||||
|
<%- headHtml %>
|
||||||
|
<% } %>
|
||||||
<% if (baiduAnalytics) { %>
|
<% if (baiduAnalytics) { %>
|
||||||
<script>
|
<script>
|
||||||
var _hmt = _hmt || [];
|
var _hmt = _hmt || [];
|
||||||
|
@ -15,6 +15,9 @@
|
|||||||
<meta http-equiv="Cache-Control" content="no-cache" />
|
<meta http-equiv="Cache-Control" content="no-cache" />
|
||||||
<meta http-equiv="Pragma" content="no-cache" />
|
<meta http-equiv="Pragma" content="no-cache" />
|
||||||
<meta http-equiv="Expires" content="0" />
|
<meta http-equiv="Expires" content="0" />
|
||||||
|
<% if (headHtml) { %>
|
||||||
|
<%- headHtml %>
|
||||||
|
<% } %>
|
||||||
<% if (enableVConsole) { %>
|
<% if (enableVConsole) { %>
|
||||||
<script src="https://unpkg.com/vconsole/dist/vconsole.min.js"></script>
|
<script src="https://unpkg.com/vconsole/dist/vconsole.min.js"></script>
|
||||||
<script>
|
<script>
|
||||||
|
@ -137,6 +137,7 @@ export function getViteConfigForSiteDev(): InlineConfig {
|
|||||||
const vantConfig = getVantConfig();
|
const vantConfig = getVantConfig();
|
||||||
const siteConfig = getSiteConfig(vantConfig);
|
const siteConfig = getSiteConfig(vantConfig);
|
||||||
const title = getTitle(siteConfig);
|
const title = getTitle(siteConfig);
|
||||||
|
const headHtml = vantConfig.site?.headHtml;
|
||||||
const baiduAnalytics = vantConfig.site?.baiduAnalytics;
|
const baiduAnalytics = vantConfig.site?.baiduAnalytics;
|
||||||
const enableVConsole = isDev() && vantConfig.site?.enableVConsole;
|
const enableVConsole = isDev() && vantConfig.site?.enableVConsole;
|
||||||
|
|
||||||
@ -178,6 +179,7 @@ export function getViteConfigForSiteDev(): InlineConfig {
|
|||||||
// `description` is used by the HTML ejs template,
|
// `description` is used by the HTML ejs template,
|
||||||
// so it needs to be written explicitly here to avoid error: description is not defined
|
// so it needs to be written explicitly here to avoid error: description is not defined
|
||||||
description: siteConfig.description,
|
description: siteConfig.description,
|
||||||
|
headHtml,
|
||||||
baiduAnalytics,
|
baiduAnalytics,
|
||||||
enableVConsole,
|
enableVConsole,
|
||||||
meta: getHTMLMeta(vantConfig),
|
meta: getHTMLMeta(vantConfig),
|
||||||
|
@ -6,7 +6,7 @@ export default {
|
|||||||
skipInstall: ['lazyload'],
|
skipInstall: ['lazyload'],
|
||||||
packageManager: 'pnpm',
|
packageManager: 'pnpm',
|
||||||
extensions: {
|
extensions: {
|
||||||
esm: '.mjs'
|
esm: '.mjs',
|
||||||
},
|
},
|
||||||
site: {
|
site: {
|
||||||
publicPath:
|
publicPath:
|
||||||
@ -29,6 +29,12 @@ export default {
|
|||||||
htmlMeta: {
|
htmlMeta: {
|
||||||
'docsearch:version': 'v3',
|
'docsearch:version': 'v3',
|
||||||
},
|
},
|
||||||
|
headHtml: `<script>
|
||||||
|
if (location.host === 'youzan.github.io') {
|
||||||
|
location.href = location.href.replace('youzan.github.io', 'vant-ui.github.io');
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
`,
|
||||||
locales: {
|
locales: {
|
||||||
'zh-CN': {
|
'zh-CN': {
|
||||||
title: 'Vant 3',
|
title: 'Vant 3',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user