diff options
author | 2021-08-25 16:36:37 -0400 | |
---|---|---|
committer | 2021-08-25 16:36:37 -0400 | |
commit | 033c480e8e16aa89afc4908ad4612d70d0083f7f (patch) | |
tree | 1bfaf8bacbd753c71e2be2d1fa97c5f88fd3e306 | |
parent | 4d7dccfb58f1772998548f4cbb12a4a28b2efccc (diff) | |
download | astro-033c480e8e16aa89afc4908ad4612d70d0083f7f.tar.gz astro-033c480e8e16aa89afc4908ad4612d70d0083f7f.tar.zst astro-033c480e8e16aa89afc4908ad4612d70d0083f7f.zip |
Fix path to CSS file in www site (#1233)
* Fix path to CSS file in www site
* remove console.log
-rw-r--r-- | www/src/components/BlogHead.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/src/components/BlogHead.astro b/www/src/components/BlogHead.astro index 57168a494..1fa671f97 100644 --- a/www/src/components/BlogHead.astro +++ b/www/src/components/BlogHead.astro @@ -4,4 +4,4 @@ import BaseHead from './BaseHead.astro'; const { title, description, canonicalURL } = Astro.props; --- <BaseHead title={title} description={description} canonicalURL={canonicalURL} /> -<link rel="stylesheet" href={Astro.resolve('../../scss/blog.css')} />
\ No newline at end of file +<link rel="stylesheet" href={Astro.resolve('../scss/blog.css')} />
\ No newline at end of file |