2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-22 10:30:34 +03:00
Files
vue-select/docs/.vitepress/config.ts
T
Jeff Sagal 96ff08406c vitepress wip
mostly working, feeling like vuepress should still be considered
2022-02-23 10:25:36 -08:00

21 lines
536 B
TypeScript

import { defineConfig } from 'vitepress'
// import { head } from './config/head'
import { themeConfig } from './config/themeConfig'
import { fileURLToPath, URL } from 'url'
export default defineConfig({
title: 'Vue Select',
// head,
themeConfig,
vite: {
resolve: {
alias: {
'@': fileURLToPath(new URL('.', import.meta.url)),
'vue-select': fileURLToPath(
new URL('../../src', import.meta.url)
),
},
},
},
})