This commit is contained in:
DrMint 2024-01-21 14:42:52 +01:00
parent 740a96d30a
commit 1f448f14f0
3 changed files with 12 additions and 9 deletions

View File

@ -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

BIN
bun.lockb

Binary file not shown.

View File

@ -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"
}
}