From a8c51a9fe4b3f486e75ac57e3e072ea6f9f65b00 Mon Sep 17 00:00:00 2001 From: Dylan Manuel Date: Mon, 6 Oct 2025 19:02:52 -0500 Subject: [PATCH] docs: update VSCode settings key for enabling rust analyzer cargo features (#241) --- src/getting_started/leptos_dx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/getting_started/leptos_dx.md b/src/getting_started/leptos_dx.md index 8fb7428..602caff 100644 --- a/src/getting_started/leptos_dx.md +++ b/src/getting_started/leptos_dx.md @@ -133,7 +133,7 @@ How to enable these features varies by your IDE, we've listed some common ones b VSCode, in `settings.json`: ```json { - "rust-analyzer.cargo.allFeatures": true, // Enable all features + "rust-analyzer.cargo.features": "all", // Enable all features } ```