8 lines
359 B
JavaScript
8 lines
359 B
JavaScript
|
|
export default () => {
|
||
|
|
if (process.client) {
|
||
|
|
const noscript = document.createElement('noscript');
|
||
|
|
noscript.innerHTML = `<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T4DJXJTT" height="0" width="0" style="display:none;visibility:hidden"></iframe>`;
|
||
|
|
document.body.insertAdjacentElement('afterbegin', noscript);
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|