mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(cli): add site.htmlPluginOptions config
This commit is contained in:
parent
ac856c2673
commit
7095773854
@ -222,6 +222,13 @@ module.exports = {
|
|||||||
|
|
||||||
配置内容参见 [docsearch](https://docsearch.algolia.com/docs/behavior)。
|
配置内容参见 [docsearch](https://docsearch.algolia.com/docs/behavior)。
|
||||||
|
|
||||||
|
### site.htmlPluginOptions
|
||||||
|
|
||||||
|
- Type: `object`
|
||||||
|
- Default: `undefined`
|
||||||
|
|
||||||
|
html-webpack-plugin 的配置项,详见 [Options](https://github.com/jantimon/html-webpack-plugin#options)。
|
||||||
|
|
||||||
## Webpack
|
## Webpack
|
||||||
|
|
||||||
通过根目录下的`webpack.config.js`文件可以修改 Webpack 配置,配置内容会通过 [webpack-merge](https://github.com/survivejs/webpack-merge) 合并到最终的配置中。
|
通过根目录下的`webpack.config.js`文件可以修改 Webpack 配置,配置内容会通过 [webpack-merge](https://github.com/survivejs/webpack-merge) 合并到最终的配置中。
|
||||||
|
@ -39,6 +39,7 @@ export function getSiteDevBaseConfig(): WebpackConfig {
|
|||||||
|
|
||||||
const siteConfig = getSiteConfig();
|
const siteConfig = getSiteConfig();
|
||||||
const title = getTitle(siteConfig);
|
const title = getTitle(siteConfig);
|
||||||
|
const { htmlPluginOptions } = vantConfig.site;
|
||||||
|
|
||||||
return merge(baseConfig as any, {
|
return merge(baseConfig as any, {
|
||||||
entry: {
|
entry: {
|
||||||
@ -88,6 +89,7 @@ export function getSiteDevBaseConfig(): WebpackConfig {
|
|||||||
template: join(__dirname, '../../site/desktop/index.html'),
|
template: join(__dirname, '../../site/desktop/index.html'),
|
||||||
filename: 'index.html',
|
filename: 'index.html',
|
||||||
baiduAnalytics,
|
baiduAnalytics,
|
||||||
|
...htmlPluginOptions,
|
||||||
}),
|
}),
|
||||||
new HtmlWebpackPlugin({
|
new HtmlWebpackPlugin({
|
||||||
title,
|
title,
|
||||||
@ -97,6 +99,7 @@ export function getSiteDevBaseConfig(): WebpackConfig {
|
|||||||
template: join(__dirname, '../../site/mobile/index.html'),
|
template: join(__dirname, '../../site/mobile/index.html'),
|
||||||
filename: 'mobile.html',
|
filename: 'mobile.html',
|
||||||
baiduAnalytics,
|
baiduAnalytics,
|
||||||
|
...htmlPluginOptions,
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user