From b259ddf271cac72e04637197a21c3c85e860dec8 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Thu, 21 Nov 2024 23:41:29 +0100 Subject: [PATCH] docs(app): update `@source` usage --- docs/app/app.vue | 2 +- docs/content/1.getting-started/3.theme.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/app/app.vue b/docs/app/app.vue index 0885f88a..c0bee02a 100644 --- a/docs/app/app.vue +++ b/docs/app/app.vue @@ -121,7 +121,7 @@ provide('navigation', updatedNavigation) @import "tailwindcss"; @import "@nuxt/ui-pro"; -@source "../content/**/*.md"; +@source "../content"; @theme { --container-8xl: 90rem; diff --git a/docs/content/1.getting-started/3.theme.md b/docs/content/1.getting-started/3.theme.md index 5d9ce79c..434f3385 100644 --- a/docs/content/1.getting-started/3.theme.md +++ b/docs/content/1.getting-started/3.theme.md @@ -50,7 +50,7 @@ This can be useful when writing Tailwind classes in markdown files with [`@nuxt/ @import "tailwindcss"; @import "@nuxt/ui"; -@source "../content/**/*.md"; +@source "../content"; ``` ::note{to="https://tailwindcss.com/docs/v4-beta#adding-content-sources"}