From 1eabcca18e238d3216fc08e274b5d39d735ca016 Mon Sep 17 00:00:00 2001 From: Moritz Sternemann Date: Wed, 13 Jul 2022 22:28:46 +0200 Subject: [PATCH] chore: Ignore type warning for missing method --- src/nuxt-plugin.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nuxt-plugin.ts b/src/nuxt-plugin.ts index 1f17075..99d87c7 100644 --- a/src/nuxt-plugin.ts +++ b/src/nuxt-plugin.ts @@ -41,6 +41,7 @@ const PlausiblePlugin: Plugin = (context, inject) => { inject('plausible', plausible) } else { // Nuxt 3 + // @ts-ignore context.provide('plausible', plausible) } }