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:
parent
4d7dccfb58
commit
033c480e8e
1 changed files with 1 additions and 1 deletions
|
@ -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')} />
|
Loading…
Reference in a new issue