Parcel/SWC Ignore Next Line

23 views Asked by At

I'm using Parcel to build some HTML5 banners. When I build the page, the var clickTag = '...' gets minified to var e = '...'. I scoured the internet for how to ignore a line of javascript in the HTML. Something like this:

<script>
   // ignore-next-line
   var clickTag = 'https://www.google.com';
</script>
0

There are 0 answers