mirror of
https://gitee.com/antv/g6.git
synced 2024-12-02 19:58:46 +08:00
19 lines
491 B
TypeScript
19 lines
491 B
TypeScript
import { defineConfig } from 'dumi';
|
|
|
|
export default defineConfig({
|
|
title: 'G6 React Node',
|
|
favicon:
|
|
'https://gw.alipayobjects.com/zos/antfincdn/cfg5jFqgVt/DiceGraph.png',
|
|
logo: 'https://gw.alipayobjects.com/zos/antfincdn/cfg5jFqgVt/DiceGraph.png',
|
|
outputPath: 'docs',
|
|
locales: [
|
|
['zh-CN', '中文'],
|
|
['en-US', 'English'],
|
|
],
|
|
resolve: { includes: ['docs', 'src'] },
|
|
dynamicImport: {
|
|
loading: '@/Loading',
|
|
},
|
|
// more config: https://d.umijs.org/config
|
|
});
|