.umirc.ts 665 Bytes
Newer Older
dengxiaofeng's avatar
dengxiaofeng committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
export default {
  mode: 'site',
  title: '运维平台',
  dynamicImport: {},
  manifest: {},
  hash: true,
  resolve: {
    includes: ['docs'],
  },
  styles: [
    `a[title='站长统计'] { display: none; }`,
  ],
  menus: {
    '/guide': [
      {
        title: '介绍',
        children: ['guide/index', 'guide/getting-started', 'guide/command'],
      },
    ],
  },
  navs: [
    null,
dengxiaofeng's avatar
dengxiaofeng committed
23 24
    { title: 'GitHub', path: 'https://g.civnet.cn:8443/test/maintenance.git' },
    { title: '更新日志', path: 'https://g.civnet.cn:8443/test/maintenance/releases' },
dengxiaofeng's avatar
dengxiaofeng committed
25 26 27 28 29
  ],
  headScripts: [
    'https://v1.cnzz.com/z_stat.php?id=1278602214&web_id=1278602214'
  ],
}