From f9060d7ebd2b0b8f532c0598accac75d7aa928fd Mon Sep 17 00:00:00 2001 From: Zach Leatherman Date: Mon, 23 Jan 2023 17:11:44 -0600 Subject: [PATCH] Additional readme for cross platform debug mode --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d2435e0..3890737 100644 --- a/README.md +++ b/README.md @@ -75,10 +75,17 @@ Or build and host locally on a local development server: npx @11ty/eleventy --serve ``` -Or in debug mode to see all the internals: +Or in [debug mode](https://www.11ty.dev/docs/debugging/) to see all the internals: ``` +# Mac OS/Linux/etc DEBUG=Eleventy* npx @11ty/eleventy + +# Windows +set DEBUG=Eleventy* & npx @11ty/eleventy + +# Windows (Powershell in VS Code) +$env:DEBUG="Eleventy*"; npx @11ty/eleventy ``` ### Implementation Notes