adding some full URLs, removing woff (not woff2)

This commit is contained in:
2022-03-28 12:49:49 -06:00
parent 89fd4b6ea3
commit 07cf7c8b4a

View File

@ -39,39 +39,36 @@
<link href="https://example.com/2003/05/" title="May 2003" rel="archives"> <link href="https://example.com/2003/05/" title="May 2003" rel="archives">
<!-- Android web manifest file --> <!-- Android web manifest file -->
<link href="/.webmanifest" rel="manifest"> <link href="https://example.com/.webmanifest" rel="manifest">
<!-- Files listing who was involved in this site and copyrights --> <!-- Files listing who was involved in this site and copyrights -->
<link href="https://example.com/humans.txt" rel="author"> <link href="https://example.com/humans.txt" rel="author">
<link href="https://example.com/copyright.html" rel="copyright"> <link href="https://example.com/copyright.html" rel="copyright">
<!-- Feeds --> <!-- Feeds -->
<link href="https://feeds.feedburner.com/example" type="application/rss+xml" title="RSS" rel="alternate"> <link href="https://example.com/rss.xml" type="application/rss+xml" title="RSS" rel="alternate">
<link href="https://example.com/feed.atom" type="application/atom+xml" title="Atom 0.3" rel="alternate"> <link href="https://example.com/feed.atom" type="application/atom+xml" title="Atom 0.3" rel="alternate">
<!-- Favicon --> <!-- Favicon -->
<link href="/favicon.ico" rel="icon" sizes="16x16" type="image/icon"> <link href="https://example.com/favicon.ico" rel="icon" sizes="16x16" type="image/icon">
<link href="/favicon.svg" rel="icon" type="image/svg+xml"> <link href="https://example.com/favicon.svg" rel="icon" type="image/svg+xml">
<link href="/favicon.png" rel="icon" sizes="192x192"> <link href="https://example.com/favicon.png" rel="icon" sizes="192x192">
<!-- Font preloads (should be done for each font file) --> <!-- Font preloads (should be done for each font file) -->
<link href="https://example.com/fonts/fontfam/font.woff2" rel="preload" as="font" type="font/woff2" crossorigin="anonymous"> <link href="https://example.com/fonts/fontfam/font.woff2" rel="preload" as="font" type="font/woff2" crossorigin="anonymous">
<link href="https://example.com/fonts/fontfam/font.woff" rel="preload" as="font" type="font/woff" crossorigin="anonymous">
<!-- CSS --> <!-- CSS -->
<link href="https://example.com/css/app.css" rel="stylesheet" media="screen"> <link href="https://example.com/css/app.css" rel="stylesheet" media="screen">
<link href="https://example.com/css/print.css" rel="stylesheet" media="print"> <link href="https://example.com/css/print.css" rel="stylesheet" media="print">
<!-- JS that must be executed before the document is loaded --> <!-- JS that must be executed before the document is loaded -->
<!-- -->
<script src="https://example.com/js/vendor/axios.min.js" defer></script> <script src="https://example.com/js/vendor/axios.min.js" defer></script>
<script src="https://example.com/js/vendor/vue.min.js" defer></script> <script src="https://example.com/js/vendor/vue.min.js" defer></script>
<script src="https://example.com/js/app.js" defer></script> <script src="https://example.com/js/app.js" defer></script>
<!-- --> <!-- -->
</head> </head>
<body class="font-sans antialiased"> <body class="font-sans antialiased">
<div id="app" class="min-h-screen bg-gray-100"> <div id="app" class="min-h-screen bg-slate-50">
<!-- --> <!-- -->
</div> </div>
</body> </body>