Skip to content

Commit f5fea4e

Browse files
authored
fix: add noarchive (#81)
* fixes #80 * fixes #85
1 parent d2b3295 commit f5fea4e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

elder.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module.exports = {
2727
plugins: {
2828
'@elderjs/plugin-sitemap': {
2929
origin: process.env.URL, // the https://yourdomain.com
30-
exclude: ['404/'], // an array of permalinks or permalink prefixes. So you can do ['500'] and it will match /500**
30+
exclude: ['404/','resume/'], // an array of permalinks or permalink prefixes. So you can do ['500'] and it will match /500**
3131
routeDetails: {
3232
blog: {
3333
priority: 0.8,

src/routes/resume/Resume.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</style>
3232

3333
<svelte:head>
34-
<meta name="robots" content="noindex, nofollow" />
34+
<meta name="robots" content="noindex, nofollow, noarchive" />
3535
</svelte:head>
3636

3737
<div class="p-4 print:hidden">🖨️-friendly 😉</div>

0 commit comments

Comments
 (0)