i've to import external scripts for advertisement. The company sent me e-mail saying i have to import this scripts :
<link rel='modulepreload' href='https://xy.js' />
<script type='module' defer src='https://xy.js'></script>
Now with nextjs i'am trying to import the script like so:
<Script
src="https://xy.js"
strategy="beforeInteractive"
/>
and i get this error :
Uncaught SyntaxError: Cannot use import statement outside a module
How can i import those scripts?