We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi im trying to implement Google Optimize to nuxt3 using partytown. I've implement script adding new plugin to nuxt3:
export default defineNuxtPlugin((nuxtApp: NuxtApp) => { const config = useRuntimeConfig(); useHead({ script: [ { src: `https://www.googleoptimize.com/optimize.js?id=${config.optimizeId}`, async: true, gtm: config.gtmId, type: 'text/partytown', } ], }); });
I see that script is loading properly:
<script src="https://www.googleoptimize.com/optimize.js?id=OPT-MMSMPHJ" async="true" type="text/partytown-x" gtm="GTM-W57WWW2"></script>
you can check, that the code above is generated here: https://qa.lendi.pl/
I've also tried to set forwarding by adding this to nuxt.config:
partytown: { debug: true, logScriptExecution: true, logStackTraces: true, forward: ['google_optimize', 'google_tag_manager',], }
But unfortunately my optimize experiments does not work. When I change script type from text/partytown to text/javascript everything works fine
text/partytown
text/javascript
The text was updated successfully, but these errors were encountered:
Shouldn't the script contain type="text/partytown" Instead of type="text/partytown-x" ?
type="text/partytown"
type="text/partytown-x"
Sorry, something went wrong.
No branches or pull requests
Hi im trying to implement Google Optimize to nuxt3 using partytown. I've implement script adding new plugin to nuxt3:
I see that script is loading properly:
you can check, that the code above is generated here: https://qa.lendi.pl/
I've also tried to set forwarding by adding this to nuxt.config:
But unfortunately my optimize experiments does not work. When I change script type from
text/partytown
totext/javascript
everything works fineThe text was updated successfully, but these errors were encountered: