You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While i know that there is no actual utility of useGtm on the server-side, it would still be great if we didn't have to ensure all calls of gtm.* are done on the client side.
The text was updated successfully, but these errors were encountered:
The original
useGtm
directive is returning essentially an instance ofGtmSupport
, which is built to handle server-side calls.However, it will only return an object if it's been instantiated, and that only happens in the
install
method.Because for your nuxt approach, you chose to only install the plugin on the client, this is breaking the server-side use of
useGtm
.While i know that there is no actual utility of
useGtm
on the server-side, it would still be great if we didn't have to ensure all calls ofgtm.*
are done on the client side.The text was updated successfully, but these errors were encountered: