mirror of
https://github.com/antd-tiny-vue/antd-tiny-vue.git
synced 2024-11-10 09:39:15 +08:00
44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import { fileURLToPath } from 'url'
|
|
import { resolve } from 'path'
|
|
import { defineConfig } from 'vitepress'
|
|
import vueJsxPlugin from '@vitejs/plugin-vue-jsx'
|
|
import VitePluginVitepressDemo from 'vite-plugin-vitepress-demo'
|
|
import getEnUSConfig from './config/en-US'
|
|
import getZhCNConfig from './config/zh-CN'
|
|
import { getRewrites } from './config/rewrites'
|
|
const baseSrc = fileURLToPath(new URL('./', import.meta.url))
|
|
|
|
export default defineConfig({
|
|
rewrites: getRewrites(),
|
|
mpa: true,
|
|
lang: 'en-US',
|
|
ignoreDeadLinks: true,
|
|
locales: {
|
|
'zh-CN': {
|
|
lang: 'zh-CN',
|
|
title: 'vue3组件库站点',
|
|
label: '简体中文',
|
|
description: 'vue3组件库站点',
|
|
themeConfig: getZhCNConfig()
|
|
},
|
|
root: {
|
|
lang: 'en-US',
|
|
title: 'vue3 component library site',
|
|
label: 'English',
|
|
description: 'vue3 component library site',
|
|
themeConfig: getEnUSConfig()
|
|
}
|
|
},
|
|
vite: {
|
|
plugins: [vueJsxPlugin(), VitePluginVitepressDemo()],
|
|
resolve: {
|
|
alias: {
|
|
'antd-tiny-vue': resolve(baseSrc, '../components')
|
|
}
|
|
},
|
|
server: {
|
|
port: 1199
|
|
}
|
|
}
|
|
})
|