- Add @astrojs/sitemap and configure in astro.config.mjs - Add favicon.svg, apple-touch-icon.png, icon-192.png, icon-512.png - Add site.webmanifest and update Layout.astro to reference icons and manifest - Update robots.txt to include sitemap - Update favicon and icon links in Layout.astro
27 lines
680 B
JSON
27 lines
680 B
JSON
{
|
|
"name": "site-astro",
|
|
"type": "module",
|
|
"version": "0.0.1",
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"build": "astro build",
|
|
"preview": "astro preview",
|
|
"astro": "astro",
|
|
"format": "prettier --write ."
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/sitemap": "^3.7.2",
|
|
"@fontsource/jetbrains-mono": "^5.2.8",
|
|
"@tailwindcss/vite": "^4.1.18",
|
|
"astro": "^5.16.10",
|
|
"astro-expressive-code": "^0.41.6",
|
|
"astro-pagefind": "^1.8.5",
|
|
"tailwindcss": "^4.1.18"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/typography": "^0.5.19",
|
|
"prettier": "^3.8.1",
|
|
"prettier-plugin-astro": "^0.14.1",
|
|
"prettier-plugin-organize-imports": "^4.3.0"
|
|
}
|
|
}
|