summaryrefslogtreecommitdiff
path: root/docs/src/pages/en/guides/debugging.md
diff options
context:
space:
mode:
authorGravatar Caleb Jasik <calebjasik@jasik.xyz> 2022-01-03 13:59:34 -0600
committerGravatar GitHub <noreply@github.com> 2022-01-03 11:59:34 -0800
commitf26eb7b74558a06ed96e7c94fd9844eaf2508fb4 (patch)
tree750ea3ba771df1669aa50782b7882ed6bee0132b /docs/src/pages/en/guides/debugging.md
parentf9b813aa86a199c8c00a4e1fe306ff6db24f1b31 (diff)
downloadastro-f26eb7b74558a06ed96e7c94fd9844eaf2508fb4.tar.gz
astro-f26eb7b74558a06ed96e7c94fd9844eaf2508fb4.tar.zst
astro-f26eb7b74558a06ed96e7c94fd9844eaf2508fb4.zip
Docs/move-english-docs-to-"en"-folder (#2268)
* Move english pages under `/en` and fix broken links hopefully * Add meta refresh tags for `/` to `/en/` url moves + make `/index.astro` work without js * update languageselect for new en format Co-authored-by: Fred K. Schott <fkschott@gmail.com>
Diffstat (limited to 'docs/src/pages/en/guides/debugging.md')
-rw-r--r--docs/src/pages/en/guides/debugging.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/src/pages/en/guides/debugging.md b/docs/src/pages/en/guides/debugging.md
new file mode 100644
index 000000000..7e3211656
--- /dev/null
+++ b/docs/src/pages/en/guides/debugging.md
@@ -0,0 +1,7 @@
+---
+layout: ~/layouts/MainLayout.astro
+title: Debugging
+description: Debug in Astro using the Debug component
+---
+
+Astro runs on the server and logs directly to your terminal, so it can be difficult to debug values from Astro. Astro's built-in `<Debug>` component can help you inspect values inside your files on the clientside. Read more about the [built-in Debug Component](/en/reference/builtin-components#debug-).