Skip to content

Commit

Permalink
Merge pull request #7 from akshay9085/main
Browse files Browse the repository at this point in the history
added sitemap support
  • Loading branch information
akshay9085 authored Dec 31, 2024
2 parents 33a87ee + f03a3a1 commit a186231
Show file tree
Hide file tree
Showing 3 changed files with 101 additions and 7 deletions.
7 changes: 5 additions & 2 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ import { defineConfig } from 'astro/config';
import tailwind from '@astrojs/tailwind';
import mdx from '@astrojs/mdx';

import sitemap from '@astrojs/sitemap';

// https://astro.build/config
export default defineConfig({
integrations: [tailwind(), mdx()],
base : '/'
integrations: [tailwind(), mdx(), sitemap()],
base : '/',
site: 'https://scilab-hackathon.fossee.in',
});
100 changes: 95 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.0.2",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.3",
"astro": "^5.0.9",
"flowbite": "^2.5.2",
Expand Down

0 comments on commit a186231

Please sign in to comment.