File tree Expand file tree Collapse file tree 4 files changed +176
-0
lines changed Expand file tree Collapse file tree 4 files changed +176
-0
lines changed Original file line number Diff line number Diff line change 1
1
import { defineConfig } from 'vitepress'
2
+ import { groupIconMdPlugin , groupIconVitePlugin } from 'vitepress-plugin-group-icons'
2
3
import path from 'path'
3
4
4
5
// https://vitepress.dev/reference/site-config
5
6
export default defineConfig ( {
6
7
base : '/vue3-form-generator/' ,
7
8
title : 'Vue3 Form Generator' ,
8
9
description : 'Documentation for vue3-form-generator' ,
10
+ markdown : {
11
+ config ( md ) {
12
+ md . use ( groupIconMdPlugin )
13
+ }
14
+ } ,
9
15
themeConfig : {
10
16
nav : [
11
17
{ text : 'Home' , link : '/' }
@@ -75,6 +81,7 @@ export default defineConfig({
75
81
]
76
82
} ,
77
83
vite : {
84
+ plugins : [ groupIconVitePlugin ( ) ] ,
78
85
resolve : {
79
86
alias : {
80
87
'@' : path . resolve ( __dirname , '../../../src' )
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import VueFormGenerator from '@/index'
3
3
4
4
import './index.css'
5
5
import '@/scss/themes/basic.scss'
6
+ import 'virtual:group-icons.css'
6
7
7
8
export default {
8
9
extends : DefaultTheme ,
Original file line number Diff line number Diff line change 69
69
"vite" : " ^5.4.19" ,
70
70
"vite-plugin-dts" : " ^4.3.0" ,
71
71
"vitepress" : " ^1.6.3" ,
72
+ "vitepress-plugin-group-icons" : " ^1.5.5" ,
72
73
"vitest" : " ^2.1.1" ,
73
74
"vue" : " ^3.5.6" ,
74
75
"vue-eslint-parser" : " ^9.4.3" ,
You can’t perform that action at this time.
0 commit comments