diff --git a/astro.config.ts b/astro.config.ts index 557a970..cc64bbe 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -1,6 +1,7 @@ import icon from "astro-icon"; import { defineConfig } from "astro/config"; import node from "@astrojs/node"; +import astroMetaTags from "astro-meta-tags"; // https://astro.build/config export default defineConfig({ @@ -12,6 +13,7 @@ export default defineConfig({ mode: "standalone", }), integrations: [ + astroMetaTags(), icon({ include: { "material-symbols": ["*"], // Loads entire Material Design Icon set diff --git a/bun.lockb b/bun.lockb index b6060b3..12bd58b 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 99ed451..c273dcf 100644 --- a/package.json +++ b/package.json @@ -11,20 +11,21 @@ "upgrade": "ncu" }, "dependencies": { - "@astrojs/check": "^0.3.1", - "@astrojs/node": "^6.0.3", - "astro": "^3.5.2", + "@astrojs/check": "^0.4.1", + "@astrojs/node": "^8.0.0", + "astro": "^4.2.1", "astro-icon": "next", "ua-parser-js": "^1.0.37" }, "devDependencies": { - "@iconify-json/material-symbols": "^1.1.62", + "@iconify-json/material-symbols": "^1.1.70", "@types/ua-parser-js": "^0.7.39", - "autoprefixer": "^10.4.16", - "bun-types": "^1.0.11", + "astro-meta-tags": "^0.2.1", + "autoprefixer": "^10.4.17", + "bun-types": "^1.0.24", "postcss-preset-env": "^9.3.0", - "ts-node": "^10.9.1", - "typescript": "^5.2.2", - "npm-check-updates": "^16.14.6" + "ts-node": "^10.9.2", + "typescript": "^5.3.3", + "npm-check-updates": "^16.14.12" } }