diff options
Diffstat (limited to 'examples/blog-multiple-authors')
-rw-r--r-- | examples/blog-multiple-authors/src/components/MainHead.astro | 2 | ||||
-rw-r--r-- | examples/blog-multiple-authors/src/styles/global.css (renamed from examples/blog-multiple-authors/public/global.css) | 0 |
2 files changed, 1 insertions, 1 deletions
diff --git a/examples/blog-multiple-authors/src/components/MainHead.astro b/examples/blog-multiple-authors/src/components/MainHead.astro index c780d24c3..0bf1ec4b0 100644 --- a/examples/blog-multiple-authors/src/components/MainHead.astro +++ b/examples/blog-multiple-authors/src/components/MainHead.astro @@ -18,7 +18,7 @@ const { title, description, image, type, next, prev, canonicalURL } = Astro.prop <meta name="description" content={description}> <link rel="preconnect" href="https://fonts.gstatic.com"> <link href="https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet"> -<link rel="stylesheet" href="/global.css"> +<link rel="stylesheet" href={Astro.resolve('../styles/global.css')} /> <!-- Sitemap --> <link rel="sitemap" href="/sitemap.xml"> <!-- RSS --> diff --git a/examples/blog-multiple-authors/public/global.css b/examples/blog-multiple-authors/src/styles/global.css index d5891f6b4..d5891f6b4 100644 --- a/examples/blog-multiple-authors/public/global.css +++ b/examples/blog-multiple-authors/src/styles/global.css |