Add sync, Tree, Markdown, content editor.

This commit is contained in:
2024-11-10 15:41:47 +01:00
parent 41951d7603
commit 721e7ff3db
32 changed files with 658 additions and 124 deletions

View File

@@ -6,7 +6,7 @@ export default defineNuxtConfig({
'nuxt-security',
'@nuxtjs/tailwindcss',
'@vueuse/nuxt',
'radix-vue/nuxt'
'radix-vue/nuxt',
],
tailwindcss: {
viewer: false,
@@ -51,9 +51,11 @@ export default defineNuxtConfig({
current: 'currentColor',
light: {
red: '#e93147',
redBack: '#F9C7CD',
orange: '#ec7500',
yellow: '#e0ac00',
green: '#08b94e',
greenBack: '#BCECCF',
cyan: '#00bfbc',
blue: '#086ddd',
purple: '#7852ee',
@@ -73,9 +75,11 @@ export default defineNuxtConfig({
},
dark: {
red: '#fb464c',
redBack: '#5A292B',
orange: '#e9973f',
yellow: '#e0de71',
green: '#44cf6e',
greenBack: '#284E34',
cyan: '#53dfdd',
blue: '#027aff',
purple: '#a882ff',
@@ -128,6 +132,7 @@ export default defineNuxtConfig({
contentSecurityPolicy: {
"img-src": "'self' data: blob:"
}
}
},
xssValidator: false,
},
})