mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-22 10:30:34 +03:00
96ff08406c
mostly working, feeling like vuepress should still be considered
21 lines
536 B
TypeScript
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)
|
|
),
|
|
},
|
|
},
|
|
},
|
|
})
|