
Company News
Jerod Santo Joins Socket as Head of Media
Allow myself to introduce... myself.
@ax2/gpt-ads-module
Advanced tools
Goggle Publisher Tag ads integration for Nuxt
Integrate Google Publisher Tag with your Nuxt project.
yarn add @ax2/gpt-ads-module
# Or npm i @ax2/gpt-ads-module
@ax2/gpt-ads-module to modules section of nuxt.config.js.// nuxt.config.js
{
modules: [
'@ax2/gpt-ads-module',
],
}
gptAds key to nuxt.config.js.// nuxt.config.js
{
gptAds: {
// Module options
}
}
Array|String: requiredYour network code as found in Google Ad Manager > Admin > Global Settings.
BooleanfalseEnable debug mode, when this is true, GPT console opens when the app loads.
String'GptAd'Name of the component that the module registers.
When the module is enabled, it registers a global Vue component that you can use to display ads in your app. By default, the component's name is GptAd but this can be changed via the componentName option.
The component accepts a few props to customize the ads you display.
string: requiredThe ad unit for a given ad as defined in Google Ad Manager > Inventory > Ad units.
Array|string: requiredDefault size for this ad, can be an array ([<width>, <height>]) or a string ('<width>x<height>').
To support multiple sizes, either pass an array of arrays ([[<width>, <height>], [<width>, <height>]]), or a string where dimensions are separated by a comma ('<width>x<height>,<width>x<height>').
ArraySize mapping for this ad. Each item in the list is an array of its own, where the first item is the browser size, and the second is the expected ad's size(s) for the breakpoint.
Sizes should either be arrays in the form [<width>, <height>] or strings in the form '<width>x<height>'.
<template>
<GptAd
ad-unit="SOME-AD-UNIT"
:size="[120, 60]"
:size-mapping="[
[[1024, 768], [970, 250]],
[[980, 690], [728, 90]],
[[640, 480], [120, 60]],
[[0, 0], [88, 31]],
]" />
</template>
Equivalent:
<template>
<GptAd
ad-unit="SOME-AD-UNIT"
size="120x60"
:size-mapping="[
['1024x768', '970x250'],
['980x690', '728x90'],
['640x480', '120x60'],
['0x0', '88x31'],
]" />
</template>
yarn install or npm installnpm run devCopyright (c) Ax2 Inc.
FAQs
Google Publisher Tag ads integration for Nuxt
We found that @ax2/gpt-ads-module demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.

Company News
Allow myself to introduce... myself.

Research
/Security News
A Twitch browser extension on Chrome and Firefox forwards users’ live OAuth session tokens through proxies controlled by a Russian bot service.

Security News
Anthropic found biased reasoning and recklessness drove Claude Mythos 5 to publish malware on PyPI and compromise a security vendor.