Skip to content

Commit

Permalink
chore: 🤖 set sitemap last modification as site-wide basis
Browse files Browse the repository at this point in the history
  • Loading branch information
heldrida committed Jun 10, 2024
1 parent b53b32e commit 0e5a8ef
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,19 @@ export default defineConfig({
vite: {
plugins: [imagetools()]
},
integrations: [tailwind({
nesting: true,
applyBaseStyles: false
}), react({
experimentalReactChildren: true
}), sitemap(), mdx()],
integrations: [
tailwind({
nesting: true,
applyBaseStyles: false
}),
react({
experimentalReactChildren: true
}),
sitemap({
lastmod: new Date(),
}),
mdx(),
],
markdown: {
remarkPlugins: [remarkDirective, [remarkCalloutDirectives, configRemarkCalloutDirectives]],
shikiConfig: {
Expand Down

0 comments on commit 0e5a8ef

Please sign in to comment.