@@ -8,6 +8,7 @@ import IconsResolver from 'unplugin-icons/resolver'
8
8
import Components from 'unplugin-vue-components/vite'
9
9
import AutoImport from 'unplugin-auto-import/vite'
10
10
import { useVueFlow } from '@vue-flow/core'
11
+ import llmstxt from 'vitepress-plugin-llms'
11
12
import head from './head'
12
13
import { copyVueFlowPlugin , files } from './plugins'
13
14
@@ -70,6 +71,7 @@ export default defineConfigWithTheme<DefaultTheme.Config>({
70
71
71
72
vite : {
72
73
define : {
74
+ // eslint-disable-next-line n/prefer-global/process
73
75
__ANALYTICS_ID__ : process . env . VERCEL_ANALYTICS_ID ,
74
76
} ,
75
77
plugins : [
@@ -94,13 +96,14 @@ export default defineConfigWithTheme<DefaultTheme.Config>({
94
96
} ) ,
95
97
Icons ( {
96
98
compiler : 'vue3' ,
97
- defaultClass : 'inline-block align-middle'
99
+ defaultClass : 'inline-block align-middle' ,
98
100
} ) ,
101
+ llmstxt ( ) ,
99
102
] ,
100
103
} ,
101
104
102
105
sitemap : {
103
- hostname : 'https://vueflow.dev'
106
+ hostname : 'https://vueflow.dev' ,
104
107
} ,
105
108
106
109
themeConfig : {
@@ -115,6 +118,7 @@ export default defineConfigWithTheme<DefaultTheme.Config>({
115
118
] ,
116
119
algolia : {
117
120
appId : 'F7BJNSM4M5' ,
121
+ // eslint-disable-next-line n/prefer-global/process
118
122
apiKey : process . env . ALGOLIA_API_KEY ! ,
119
123
indexName : 'vueflow' ,
120
124
} ,
@@ -194,7 +198,7 @@ export default defineConfigWithTheme<DefaultTheme.Config>({
194
198
{
195
199
text : 'Troubleshooting' ,
196
200
link : '/guide/troubleshooting' ,
197
- }
201
+ } ,
198
202
] ,
199
203
'/examples/' : [
200
204
{
0 commit comments