.dumirc.ts
410 Bytes
import { defineConfig } from 'dumi';
export default defineConfig({
apiParser: {},
outputPath: 'docs-dist',
themeConfig: {
name: '@qx/common',
},
resolve: {
// 配置入口文件路径,API 解析将从这里开始
entryFile: './src/index.ts',
},
proxy: {
'/qx-api/': {
target: 'http://10.9.1.180',
changeOrigin: true,
pathRewrite: { '^': '' },
},
},
});