config.js 3.7 KB
Newer Older
D
DCloud_LXH 已提交
1 2 3 4 5 6
const path = require('path');
const { slugify } = require('@vuepress/shared-utils')
const highlight = require('@vuepress/markdown/lib/highlight')
const translatePlugin = require('./markdown/translate')
const headerPlugin = require('./markdown/header')
const createSidebar = require('./markdown/createSidebar')
D
DCloud_LXH 已提交
7
const { simplifySlugText } = require('./utils')
D
DCloud_LXH 已提交
8 9
const copyOptions = require('./config/copy');

D
DCloud_LXH 已提交
10 11
const base = '/uni-app-x/'

D
DCloud_LXH 已提交
12
const config = {
D
DCloud_LXH 已提交
13
  base,
D
DCloud_LXH 已提交
14
  theme: 'vuepress-theme-uniapp-official',
D
DCloud_LXH 已提交
15 16 17 18 19 20 21
  title: 'uni-app-x',
  description: 'uni-app-x Document',
  evergreen: process.env.NODE_ENV === 'development',
  head: [
    ['link', {
      rel: 'shortcut icon',
      type: 'image/x-icon',
D
DCloud_LXH 已提交
22
      href: 'https://web-ext-storage.dcloud.net.cn/uni-app-x/logo.ico'
D
DCloud_LXH 已提交
23 24 25 26 27 28 29 30
    }],
    ['meta', {
      name: 'viewport', content: 'width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0'
    }],
    ['meta', {
      name: 'keywords', content: '数字天堂,前端开发,web开发,小程序开发,跨平台,跨平台开发,跨端开发,混合开发,app开发,多端开发,开发工具,HTML5,vue,react,native,rn,flutter,weex,cordova,微信小程序,阿里小程序,支付宝小程序,百度小程序,头条小程序,抖音小程序,QQ小程序,快应用,流应用,云函数'
    }],
    ['script', { src: 'https://hm.baidu.com/hm.js?fe3b7a223fc08c795f0f4b6350703e6f' }],
D
DCloud_LXH 已提交
31
    ['script', { src: '/miku-delivery-1.2.1.js' }],
D
DCloud_LXH 已提交
32 33 34 35 36 37 38 39
    ['script', { src: `/js/miku.js?${Date.now()}&v=${Date.now()}&version=${Date.now()}` }]
  ],
  locales: {
    '/': {
      lang: 'zh-CN',
    }
  },
  themeConfig: {
D
DCloud_LXH 已提交
40
    titleLogo: 'https://web-ext-storage.dcloud.net.cn/uni-app-x/logo.ico',
D
DCloud_LXH 已提交
41
    logo: 'https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/logo.png',
D
DCloud_LXH 已提交
42
    sidebar: createSidebar(),
D
DCloud_LXH 已提交
43 44 45 46
    sidebarDepth: 0,
    nextLinks: false,
    prevLinks: false,
    repo: 'dcloudio/uni-app',
D
DCloud_LXH 已提交
47
    docsRepo: 'https://gitcode.net/dcloud/unidocs-uni-app-x-zh',
D
DCloud_LXH 已提交
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
    docsBranch: 'master',
    docsDir: 'docs',
    editLinks: true,
    editLinkText: '帮助我们改善此页面!',
    lastUpdated: '上次更新',
    // smoothScroll: true,
    search: false,
    algolia: {
      apiKey: '2fdcc4e76c8e260671ad70065e60b2e7',
      indexName: 'zh-uniapp',
      appId: 'PQIR5NL8CZ',
      searchParameters: { hitsPerPage: 50 }
    },
    isDevelopment: process.env.NODE_ENV === 'development'
  },
  markdown: {
    // toc: { includeLevel: [1, 2, 3, 4] },
    slugify (str) {
      if (typeof str !== 'string') return ''

      let slug = str
      if (slug.includes('@')) {
        let array = slug.split('@')
        slug = array.length > 1 ? array[array.length - 1] : str
      } else {
        slug = simplifySlugText(slug.toLowerCase()).trim()
      }
      return slugify(slug)
    },
    extractHeaders: ['h1', 'h2', 'h3', 'h4'],
    chainMarkdown (config) {
      const extensionMap = {
D
DCloud_LXH 已提交
80 81
        uts: 'ts',
        uvue: 'vue'
D
DCloud_LXH 已提交
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
      }
      config.options.highlight((str, lang) => {
        const extension = extensionMap[lang]
        return highlight(str, extension || lang)
      })

      config
        .plugin('translate')
        .use(translatePlugin)
        .end()
        .plugin('convert-header')
        .use(headerPlugin)
        .end()
        .plugin('normallize-link')
        .use(require('./markdown/normallizeLink'))
        .end()
				.plugin('img-add-attrs')
				.use(require('./markdown/img-add-attrs'))
        .end()
        .plugin('inject-json-to-md')
        .use(require('./markdown/inject-json-to-md'))
    }
  },
  chainWebpack (config, isServer) {
    config.resolve.alias.set(
      '@theme-config',
      path.resolve(process.cwd(), 'docs/.vuepress/config')
    )
  },
  plugins: [
D
DCloud_LXH 已提交
112
    ["vuepress-plugin-juejin-style-copy", copyOptions]
D
DCloud_LXH 已提交
113
  ]
D
DCloud_LXH 已提交
114 115
}

D
DCloud_LXH 已提交
116
module.exports = config