From 5db3b0f98c7e7687dd36a2803952bf11460e070a Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Thu, 17 Jul 2025 10:56:08 +0200 Subject: [PATCH] docs(icons): add `app` prefix to assets --- docs/content/1.getting-started/4.icons/1.nuxt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/1.getting-started/4.icons/1.nuxt.md b/docs/content/1.getting-started/4.icons/1.nuxt.md index b7b32f31..b1f84208 100644 --- a/docs/content/1.getting-started/4.icons/1.nuxt.md +++ b/docs/content/1.getting-started/4.icons/1.nuxt.md @@ -87,7 +87,7 @@ Read more about this in the `@nuxt/icon` documentation. You can use local SVG files to create a custom Iconify collection. -For example, place your icons' SVG files under a folder of your choice, for example, `./assets/icons`: +For example, place your icons' SVG files under a folder of your choice, for example, `./app/assets/icons`: ```bash assets/icons @@ -104,7 +104,7 @@ export default defineNuxtConfig({ icon: { customCollections: [{ prefix: 'custom', - dir: './assets/icons' + dir: './app/assets/icons' }] } })