From f01594bf17521bd24b19e5be9e0c405c37129523 Mon Sep 17 00:00:00 2001 From: Benicio Cardozo Date: Fri, 14 Oct 2022 14:03:19 -0300 Subject: [PATCH] Update docs/content/2.guide/2.directory-structure/1.pages.md Co-authored-by: pooya parsa --- docs/content/2.guide/2.directory-structure/1.pages.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/2.guide/2.directory-structure/1.pages.md b/docs/content/2.guide/2.directory-structure/1.pages.md index 6dfcc289098..a49d0060c2a 100644 --- a/docs/content/2.guide/2.directory-structure/1.pages.md +++ b/docs/content/2.guide/2.directory-structure/1.pages.md @@ -10,7 +10,7 @@ head.title: "Pages" Nuxt provides a file-based routing to create routes within your web application using [Vue Router](https://router.vuejs.org) under the hood. ::alert{type="info"} -This directory is **optional**, meaning that [`vue-router`](https://router.vuejs.org) won't be included if you only use [app.vue](/guide/directory-structure/app) (unless you provide an [`router.options.ts`](/guide/directory-structure/pages#router-options), reducing your application's bundle size. +This directory is **optional**, meaning that [`vue-router`](https://router.vuejs.org) won't be included if you only use [app.vue](/guide/directory-structure/app) (unless you set `pages: true` in `nuxt.config` or have a [`app/router.options.ts`](/guide/directory-structure/pages#router-options)), reducing your application's bundle size. :: ## Usage