1

I'm trying to preconnect to resources on my .aspx page.

My code:

<link rel="preconnect" href="https://vars.hotjar.com" crossorigin/>

Which .NET turns into

<link rel="preconnect" href="https://vars.hotjar.com" crossorigin=""/>

I've upgraded to VS2019, I'm pretty sure on past projects I've never had this problem so it may be a VS issue. Does anyone know how to bypass this change?

Thanks

MattHodson
  • 736
  • 7
  • 22

1 Answers1

2

Why do you want to bypass it? VS2019 is just correcting your typo to correct syntax

From term of functionality there is no difference.

Erik Šťastný
  • 1,487
  • 1
  • 15
  • 41