diff --git a/.prettierignore b/.prettierignore index 4c35c090..3f5a5547 100644 --- a/.prettierignore +++ b/.prettierignore @@ -2,4 +2,4 @@ node_modules .github .idea public -content +**/*.md diff --git a/app.vue b/app.vue index b31c0f44..f8c37a1f 100644 --- a/app.vue +++ b/app.vue @@ -67,7 +67,7 @@ provide('navigation', navigation); diff --git a/bun.lockb b/bun.lockb index 4cc36ba5..3dd88caf 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/nuxt.config.ts b/nuxt.config.ts index a0e8a290..1393e068 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -7,7 +7,7 @@ export default defineNuxtConfig({ hooks: { // Define `@nuxt/ui` components as global to use them in `.md` (feel free to add those you need) 'components:extend': (components) => { - const globals = components.filter((c) => ['UButton', 'UIcon', 'Test'].includes(c.pascalName)); + const globals = components.filter((c) => ['UButton', 'UIcon'].includes(c.pascalName)); globals.forEach((c) => (c.global = true)); }, diff --git a/pages/index.vue b/pages/index.vue index a74d277f..0b527955 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -8,123 +8,53 @@ useSeoMeta({ description: page.value?.description, ogDescription: page.value?.description, }); - -const particlesLoaded = async (container: unknown) => { - console.log('Particles container loaded', container); -};