mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs(cli): add srcDir config (#6109)
This commit is contained in:
parent
26449eb1ea
commit
3d3ad38443
@ -30,8 +30,8 @@ module.exports = {
|
|||||||
// 构建配置
|
// 构建配置
|
||||||
build: {
|
build: {
|
||||||
site: {
|
site: {
|
||||||
publicPath: '/demo-ui/'
|
publicPath: '/demo-ui/',
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
// 文档站点配置
|
// 文档站点配置
|
||||||
site: {
|
site: {
|
||||||
@ -48,21 +48,21 @@ module.exports = {
|
|||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
path: 'home',
|
path: 'home',
|
||||||
title: '介绍'
|
title: '介绍',
|
||||||
}
|
},
|
||||||
]
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '基础组件',
|
title: '基础组件',
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
path: 'my-button',
|
path: 'my-button',
|
||||||
title: 'MyButton 按钮'
|
title: 'MyButton 按钮',
|
||||||
}
|
},
|
||||||
]
|
],
|
||||||
}
|
},
|
||||||
]
|
],
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -84,9 +84,9 @@ CSS 预处理器配置,目前支持`less`和`sass`两种预处理器,默认
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
build: {
|
build: {
|
||||||
css: {
|
css: {
|
||||||
preprocessor: 'sass'
|
preprocessor: 'sass',
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -103,9 +103,22 @@ module.exports = {
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
build: {
|
build: {
|
||||||
site: {
|
site: {
|
||||||
publicPath: '/demo-ui/'
|
publicPath: '/demo-ui/',
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
### build.srcDir
|
||||||
|
|
||||||
|
- Type: `string`
|
||||||
|
- Default: `src`
|
||||||
|
|
||||||
|
```js
|
||||||
|
module.exports = {
|
||||||
|
build: {
|
||||||
|
srcDir: 'myDir',
|
||||||
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -150,12 +163,12 @@ module.exports = {
|
|||||||
// 导航项路由
|
// 导航项路由
|
||||||
path: 'home',
|
path: 'home',
|
||||||
// 导航项文案
|
// 导航项文案
|
||||||
title: '介绍'
|
title: '介绍',
|
||||||
}
|
},
|
||||||
]
|
],
|
||||||
}
|
},
|
||||||
]
|
],
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -172,10 +185,10 @@ module.exports = {
|
|||||||
versions: [
|
versions: [
|
||||||
{
|
{
|
||||||
label: '1.x',
|
label: '1.x',
|
||||||
link: 'https://youzan.github.io/vant/1.x/'
|
link: 'https://youzan.github.io/vant/1.x/',
|
||||||
}
|
},
|
||||||
]
|
],
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -193,9 +206,9 @@ module.exports = {
|
|||||||
// 打开百度统计 ->『管理』->『代码获取』
|
// 打开百度统计 ->『管理』->『代码获取』
|
||||||
// 找到下面这串 URL: "https://hm.baidu.com/hm.js?xxxxx"
|
// 找到下面这串 URL: "https://hm.baidu.com/hm.js?xxxxx"
|
||||||
// 将 `xxxxx` 填写在 seed 中即可
|
// 将 `xxxxx` 填写在 seed 中即可
|
||||||
seed: 'xxxxx'
|
seed: 'xxxxx',
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -208,8 +221,8 @@ module.exports = {
|
|||||||
```js
|
```js
|
||||||
module.exports = {
|
module.exports = {
|
||||||
devServer: {
|
devServer: {
|
||||||
port: 9000
|
port: 9000,
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -223,7 +236,7 @@ module.exports = {
|
|||||||
|
|
||||||
```js
|
```js
|
||||||
module.exports = {
|
module.exports = {
|
||||||
presets: ['@vant/cli/preset']
|
presets: ['@vant/cli/preset'],
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -270,8 +283,8 @@ module.exports = {
|
|||||||
```js
|
```js
|
||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: {
|
plugins: {
|
||||||
autoprefixer: {}
|
autoprefixer: {},
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user