@@ -2,77 +2,77 @@ import { defineConfig } from 'vitepress'
22
33// https://vitepress.dev/reference/site-config
44export default defineConfig ( {
5- title : 'Nuxt Tiptap Editor' ,
6- description :
5+ title : 'Nuxt Tiptap Editor' ,
6+ description :
77 'Essentials to Quickly Integrate TipTap Editor into your Nuxt App' ,
88
9- cleanUrls : true ,
10- lastUpdated : true ,
9+ cleanUrls : true ,
10+ lastUpdated : true ,
1111
12- head : [
13- [
14- 'script' ,
15- {
16- async : true ,
17- src : 'https://www.googletagmanager.com/gtag/js?id=G-Z1D6HCTHXL' ,
18- } ,
19- ] ,
20- [
21- 'script' ,
22- { } ,
23- "window.dataLayer = window.dataLayer || [];\nfunction gtag(){dataLayer.push(arguments);}\ngtag('js', new Date());\ngtag('config', 'G-Z1D6HCTHXL');" ,
24- ] ,
12+ head : [
13+ [
14+ 'script' ,
15+ {
16+ async : true ,
17+ src : 'https://www.googletagmanager.com/gtag/js?id=G-Z1D6HCTHXL' ,
18+ } ,
2519 ] ,
20+ [
21+ 'script' ,
22+ { } ,
23+ 'window.dataLayer = window.dataLayer || [];\nfunction gtag(){dataLayer.push(arguments);}\ngtag(\'js\', new Date());\ngtag(\'config\', \'G-Z1D6HCTHXL\');' ,
24+ ] ,
25+ ] ,
2626
27- themeConfig : {
28- // https://vitepress.dev/reference/default-theme-config
29- search : {
30- provider : 'local' ,
31- } ,
27+ themeConfig : {
28+ // https://vitepress.dev/reference/default-theme-config
29+ search : {
30+ provider : 'local' ,
31+ } ,
3232
33- nav : [
34- { text : 'Docs' , link : '/docs/what-is' } ,
35- { text : 'Examples' , link : '/examples/basic' } ,
36- ] ,
33+ nav : [
34+ { text : 'Docs' , link : '/docs/what-is' } ,
35+ { text : 'Examples' , link : '/examples/basic' } ,
36+ ] ,
3737
38- sidebar : [
39- {
40- text : 'Documentation' ,
41- items : [
42- {
43- text : 'What is Nuxt Tiptap Editor?' ,
44- link : '/docs/what-is' ,
45- } ,
46- { text : 'Quick Setup' , link : '/docs/quick-setup' } ,
47- { text : 'Important' , link : '/docs/important' } ,
48- { text : 'Extensions' , link : '/docs/extensions' } ,
49- { text : 'Development' , link : '/docs/development' } ,
50- { text : 'Contribution' , link : '/docs/contribution' } ,
51- ] ,
52- } ,
53- {
54- text : 'Examples' ,
55- items : [
56- { text : 'Basic' , link : '/examples/basic' } ,
57- {
58- text : 'Pre-fill Content' ,
59- link : '/examples/prefill-content' ,
60- } ,
61- {
38+ sidebar : [
39+ {
40+ text : 'Documentation' ,
41+ items : [
42+ {
43+ text : 'What is Nuxt Tiptap Editor?' ,
44+ link : '/docs/what-is' ,
45+ } ,
46+ { text : 'Quick Setup' , link : '/docs/quick-setup' } ,
47+ { text : 'Important' , link : '/docs/important' } ,
48+ { text : 'Extensions' , link : '/docs/extensions' } ,
49+ { text : 'Development' , link : '/docs/development' } ,
50+ { text : 'Contribution' , link : '/docs/contribution' } ,
51+ ] ,
52+ } ,
53+ {
54+ text : 'Examples' ,
55+ items : [
56+ { text : 'Basic' , link : '/examples/basic' } ,
57+ {
58+ text : 'Pre-fill Content' ,
59+ link : '/examples/prefill-content' ,
60+ } ,
61+ {
6262 text : 'Code Block Highlighter' ,
6363 link : '/examples/lowlight' ,
6464 } ,
65- { text : 'Placeholder' , link : '/examples/placeholder' } ,
66- { text : 'Image Upload' , link : '/examples/image-upload' } ,
67- ] ,
68- } ,
65+ { text : 'Placeholder' , link : '/examples/placeholder' } ,
66+ { text : 'Image Upload' , link : '/examples/image-upload' } ,
6967 ] ,
68+ } ,
69+ ] ,
7070
71- socialLinks : [
72- {
73- icon : 'github' ,
74- link : 'https://github.com/modbender/nuxt-tiptap-editor' ,
75- } ,
76- ] ,
77- } ,
71+ socialLinks : [
72+ {
73+ icon : 'github' ,
74+ link : 'https://github.com/modbender/nuxt-tiptap-editor' ,
75+ } ,
76+ ] ,
77+ } ,
7878} )
0 commit comments