From 8525d69349f106f9946825ef1cb3b671a656b701 Mon Sep 17 00:00:00 2001 From: Kitty Giraudel <1889710+KittyGiraudel@users.noreply.github.com> Date: Tue, 3 Mar 2026 10:10:51 +0100 Subject: [PATCH] Fix TS type definition path in documentation snippet --- src/docs/config.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/config.md b/src/docs/config.md index 9fc972c15f..4730c8a812 100644 --- a/src/docs/config.md +++ b/src/docs/config.md @@ -479,7 +479,7 @@ This will now include a `data` property in your JSON output that includes the `p This may enable some extra autocomplete features in your IDE (where supported). {% set codeContent %} -/** @param {import("@11ty/eleventy").UserConfig} eleventyConfig */ +/** @param {import('@11ty/eleventy/UserConfig').default} eleventyConfig */ export default function (eleventyConfig) { // … };