Fix path to CSS file in www site (#1233)

* Fix path to CSS file in www site

* remove console.log
This commit is contained in:
Matthew Phillips 2021-08-25 16:36:37 -04:00 committed by GitHub
parent 4d7dccfb58
commit 033c480e8e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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')} />
<link rel="stylesheet" href={Astro.resolve('../scss/blog.css')} />