Is inlining the contents of https://use.typekit.net/<projectId>.css permitted on a website ?
I am trying to use an Adobe Font for a website. The generated embed code looks something like this
```
<link rel="stylesheet" href="https://use.typekit.net/<projectId>.css">
```
When building in production mode with nextjs's latest version ( ^13.0.3 ), it replaces the link tag in the header with a style tag containing the content of https://use.typekit.net/<projectId>.css
like this
```
<style data-href="https://use.typekit.net/<projectId>.css">
... contents of https://use.typekit.net/<projectId>.css
</style>
```
Is it permitted to copy & paste the contents of the CSS file instead of having a link to the CSS file?
Thank you.
