diff options
Diffstat (limited to 'examples/starter/src/pages/index.astro')
-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> |