diff options
Diffstat (limited to 'docs/config.md')
-rw-r--r-- | docs/config.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/config.md b/docs/config.md index 1dffbc49a..7474109cc 100644 --- a/docs/config.md +++ b/docs/config.md @@ -6,8 +6,8 @@ To configure Astro, add an `astro.config.mjs` file in the root of your project. export default { /** Where to resolve all URLs relative to. Useful if you have a monorepo project. */ projectRoot: '.', - /** Path to Astro components, pages, and data */ - astroRoot: './src', + /** Path to your site’s pages (routes) */ + pages: './src/pages', /** When running `astro build`, path to final static output */ dist: './dist', /** A folder of static files Astro will copy to the root. Useful for favicons, images, and other files that don’t need processing. */ |