diff options
author | 2021-08-25 11:51:04 -0700 | |
---|---|---|
committer | 2021-08-25 11:51:04 -0700 | |
commit | affcd04f0f89de6268e7e359b2ddb8e07ef760d9 (patch) | |
tree | b79877a7fb9a1ca4aec3439191daa7bfd8ececbc /www/src/components | |
parent | c819b3dadea02a614e4bbc891f1ab4a99d8ab017 (diff) | |
download | astro-affcd04f0f89de6268e7e359b2ddb8e07ef760d9.tar.gz astro-affcd04f0f89de6268e7e359b2ddb8e07ef760d9.tar.zst astro-affcd04f0f89de6268e7e359b2ddb8e07ef760d9.zip |
stop building, bundling, and transforming public/ files (#1210)
* stop bundling public/ files
* update www and examples
Diffstat (limited to 'www/src/components')
-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 30dc2f4ed..57168a494 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="/blog.css" />
\ No newline at end of file +<link rel="stylesheet" href={Astro.resolve('../../scss/blog.css')} />
\ No newline at end of file |