- Add document::Stylesheet for /style.css and /highlight.css in AppRouter - This ensures CSS is included in SSR HTML for all pages (home, post detail, etc.) - Also add public/index.html for production builds - Remove stale ISRG cache files
14 lines
307 B
HTML
14 lines
307 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="/style.css">
|
|
<link rel="stylesheet" href="/highlight.css">
|
|
<title>Yggdrasil Blog</title>
|
|
</head>
|
|
<body>
|
|
<div id="main"></div>
|
|
</body>
|
|
</html>
|