diff options
author | 2021-08-25 11:51:04 -0700 | |
---|---|---|
committer | 2021-08-25 11:51:04 -0700 | |
commit | affcd04f0f89de6268e7e359b2ddb8e07ef760d9 (patch) | |
tree | b79877a7fb9a1ca4aec3439191daa7bfd8ececbc /examples/with-markdown/src | |
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 'examples/with-markdown/src')
-rw-r--r-- | examples/with-markdown/src/layouts/main.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/with-markdown/src/layouts/main.astro b/examples/with-markdown/src/layouts/main.astro index c0e71dd45..548cbd2ca 100644 --- a/examples/with-markdown/src/layouts/main.astro +++ b/examples/with-markdown/src/layouts/main.astro @@ -9,7 +9,7 @@ const { content } = Astro.props; <link rel="icon" type="image/x-icon" href="/favicon.ico" /> <title>{content.title}</title> - <link rel="stylesheet" href="/styles/global.css"> + <link rel="stylesheet" href="/global.css"> </head> <body> <slot/> |