diff options
author | 2021-07-16 06:01:31 -0500 | |
---|---|---|
committer | 2021-07-16 07:01:31 -0400 | |
commit | 6d06fce6d2f47ee793b98b970212b27e8dc059f2 (patch) | |
tree | e8424c9266de0886e8fb3c133da7f87e2eeacb11 /examples/starter/src/pages | |
parent | f64ff85b267b732dc2598bb9c80418622e435cfb (diff) | |
download | astro-6d06fce6d2f47ee793b98b970212b27e8dc059f2.tar.gz astro-6d06fce6d2f47ee793b98b970212b27e8dc059f2.tar.zst astro-6d06fce6d2f47ee793b98b970212b27e8dc059f2.zip |
Update docs in compiler messages (#710)
* `github.com/snowpackjs/astro/blob/main/docs/*.md` -> `docs.astro.build/*/`
* convert links to docs site links
* Fix broken links that didn't work w/ the regex.
* Add changeset
* Delete five-weeks-destroy.md
Co-authored-by: Fred K. Schott <fkschott@gmail.com>
Diffstat (limited to 'examples/starter/src/pages')
-rw-r--r-- | examples/starter/src/pages/index.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/starter/src/pages/index.astro b/examples/starter/src/pages/index.astro index 2e5832a3f..30a28212a 100644 --- a/examples/starter/src/pages/index.astro +++ b/examples/starter/src/pages/index.astro @@ -11,7 +11,7 @@ import Tour from '../components/Tour.astro'; let title = 'My Astro Site'; // Full Astro Component Syntax: -// https://github.com/snowpackjs/astro/blob/main/docs/core-concepts/astro-components.md +// https://docs.astro.build/core-concepts/astro-components/ --- <html lang="en"> <head> @@ -48,7 +48,7 @@ let title = 'My Astro Site'; - Note: by default, these components are NOT interactive on the client. - The `:visible` directive tells Astro to make it interactive. - - - See https://github.com/snowpackjs/astro/blob/main/docs/core-concepts/component-hydration.md + - See https://docs.astro.build/core-concepts/component-hydration/ --> <!-- ASTRO:COMPONENT_MARKUP --> </main> |