From 6cca09394ea2d4c910a266522d3f9678b93f9147 Mon Sep 17 00:00:00 2001 From: Tyler McDonald <100496212+tyler-mcdonald@users.noreply.github.com> Date: Fri, 20 Sep 2024 11:34:35 -0500 Subject: [PATCH] docs: fix typo in plugins.md (#2775) --- packages/docs/core-concepts/plugins.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/core-concepts/plugins.md b/packages/docs/core-concepts/plugins.md index f23a93a737..f784ec0dcf 100644 --- a/packages/docs/core-concepts/plugins.md +++ b/packages/docs/core-concepts/plugins.md @@ -81,7 +81,7 @@ Any property _returned_ by a plugin will be automatically tracked by devtools so // from the example above pinia.use(({ store }) => { store.hello = 'world' - // make sure your bundler handle this. webpack and vite should do it by default + // make sure your bundler handles this. webpack and vite should do it by default if (process.env.NODE_ENV === 'development') { // add any keys you set on the store store._customProperties.add('hello')