mirror of
https://github.com/doocs/md.git
synced 2024-11-24 19:10:34 +08:00
18 lines
363 B
JavaScript
18 lines
363 B
JavaScript
|
/**
|
||
|
* 配置说明请参考文档:
|
||
|
* https://hongqiye.com/doc/mockm/config/option.html
|
||
|
* @type {import('mockm/@types/config').Config}
|
||
|
*/
|
||
|
module.exports = {
|
||
|
static: [
|
||
|
{ // 测试 netlify 部署
|
||
|
fileDir: `./dist`,
|
||
|
path: `/`,
|
||
|
},
|
||
|
{ // 测试 gitee/github 部署
|
||
|
fileDir: `./dist`,
|
||
|
path: `/md`,
|
||
|
},
|
||
|
],
|
||
|
}
|