diff options
author | 2021-08-17 22:33:42 -0700 | |
---|---|---|
committer | 2021-08-17 22:33:42 -0700 | |
commit | 1aa2f92bbc65d65a2d7961926d34333cdcdf6afe (patch) | |
tree | b013403974d02d13cb4ecbf5dd962d8a8f090bf2 /examples/minimal/src | |
parent | b3da04bb501975443d410a76bed58547abb4c5ec (diff) | |
download | astro-1aa2f92bbc65d65a2d7961926d34333cdcdf6afe.tar.gz astro-1aa2f92bbc65d65a2d7961926d34333cdcdf6afe.tar.zst astro-1aa2f92bbc65d65a2d7961926d34333cdcdf6afe.zip |
make example favicons prefer non-dark mode
Diffstat (limited to 'examples/minimal/src')
-rw-r--r-- | examples/minimal/src/pages/index.astro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/minimal/src/pages/index.astro b/examples/minimal/src/pages/index.astro index 356373630..8e9209641 100644 --- a/examples/minimal/src/pages/index.astro +++ b/examples/minimal/src/pages/index.astro @@ -4,6 +4,7 @@ <head> <meta charset="utf-8" /> + <link rel="icon" type="image/x-icon" href="/favicon.ico" /> <meta name="viewport" content="width=device-width" /> <title>Welcome to Astro</title> </head> |