From bd4d0d15db604d8215fa5cc152329b3a42cf844c Mon Sep 17 00:00:00 2001 From: Drake Semchyshyn <101235639+FortyGazelle700@users.noreply.github.com> Date: Sun, 4 Feb 2024 03:19:00 -0600 Subject: [PATCH] Update plugins.md (#8674) Updated Custom Plugins section (Svelte) so that the import name, and the name that was used, matches each other. --- docs/runtime/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/runtime/plugins.md b/docs/runtime/plugins.md index dee6d2c902..d150bb6014 100644 --- a/docs/runtime/plugins.md +++ b/docs/runtime/plugins.md @@ -214,7 +214,7 @@ With this plugin, Svelte components can now be directly imported and consumed. import "./sveltePlugin.ts"; import MySvelteComponent from "./component.svelte"; -console.log(mySvelteComponent.render()); +console.log(MySvelteComponent.render()); ``` ## Virtual Modules