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' }] } })