summaryrefslogtreecommitdiff
path: root/docs/src
diff options
context:
space:
mode:
authorGravatar Marty Nelson <marty@martypdx.com> 2022-01-27 14:00:08 -0800
committerGravatar GitHub <noreply@github.com> 2022-01-27 17:00:08 -0500
commit2a24147d68857c739ad06c7bcc0f91420f05f36a (patch)
tree14f37408758078a9673636ef9d022b005b185703 /docs/src
parentebaa3f0934df2f8a59a7f24bb01f8d689edadece (diff)
downloadastro-2a24147d68857c739ad06c7bcc0f91420f05f36a.tar.gz
astro-2a24147d68857c739ad06c7bcc0f91420f05f36a.tar.zst
astro-2a24147d68857c739ad06c7bcc0f91420f05f36a.zip
Aligns docs on `pages` config with reality (#2477)
Diffstat (limited to 'docs/src')
-rw-r--r--docs/src/pages/en/reference/configuration-reference.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/pages/en/reference/configuration-reference.md b/docs/src/pages/en/reference/configuration-reference.md
index 82c535a65..00d6a7dc1 100644
--- a/docs/src/pages/en/reference/configuration-reference.md
+++ b/docs/src/pages/en/reference/configuration-reference.md
@@ -12,7 +12,7 @@ export default /** @type {import('astro').AstroUserConfig} */ ({
public: './public/',
dist: './dist/',
src: './src/',
- pages: './pages/',
+ pages: './src/pages/',
renderers: [
'@astrojs/renderer-svelte',
'@astrojs/renderer-vue',
@@ -51,7 +51,7 @@ The `src` option sets the directory used to resolve source files, like `pages`.
The `pages` option sets the directory used to resolve pages, relative to the `src` option.
-**Default**: The `pages` directory within the `src` directory.
+**Default**: The `src/pages` directory within the `projectRoot` directory.
#### renderers