From 37316c78725d1db203016b6c2e0219714217550d Mon Sep 17 00:00:00 2001 From: dsnsgithub Date: Sun, 18 Jan 2026 01:07:19 -0800 Subject: [PATCH] Update dependencies and remove unused output config Updates @astrojs/vercel to v9.0.4 and adjusts the config to remove the now-deprecated `output` property. Also updates other Astro-related dependencies to their latest versions. --- astro.config.mjs | 12 +- package.json | 84 +-- src/components/Nav.astro | 2 +- src/layouts/Layout.astro | 4 +- src/pages/404.astro | 1 - src/pages/blog/[...slug].astro | 4 +- src/pages/blog/index.astro | 28 +- src/pages/eq.astro | 1001 ++++++++++++++++---------------- src/pages/status.astro | 5 +- src/pages/youtube.astro | 7 +- 10 files changed, 574 insertions(+), 574 deletions(-) diff --git a/astro.config.mjs b/astro.config.mjs index 45e401f..f6f2626 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,14 +1,12 @@ -import { defineConfig } from 'astro/config'; +import { defineConfig } from "astro/config"; import tailwind from "@astrojs/tailwind"; import icon from "astro-icon"; import react from "@astrojs/react"; import mdx from "@astrojs/mdx"; -import vercel from "@astrojs/vercel/serverless"; - +import vercel from "@astrojs/vercel"; // https://astro.build/config export default defineConfig({ - integrations: [tailwind(), icon(), react(), mdx()], - output: "hybrid", - adapter: vercel() -}); \ No newline at end of file + integrations: [tailwind(), icon(), react(), mdx()], + adapter: vercel() +}); diff --git a/package.json b/package.json index b7b61d3..aa5358a 100644 --- a/package.json +++ b/package.json @@ -1,44 +1,44 @@ { - "name": "astro-test", - "type": "module", - "version": "0.0.1", - "scripts": { - "dev": "astro dev", - "start": "astro dev", - "build": "astro check && astro build", - "preview": "astro preview", - "astro": "astro" - }, - "dependencies": { - "@astrojs/check": "^0.9.1", - "@astrojs/mdx": "^3.1.3", - "@astrojs/react": "^3.6.1", - "@astrojs/tailwind": "^5.1.0", - "@astrojs/vercel": "^7.7.2", - "@fontsource-variable/dm-sans": "^5.0.6", - "@formkit/auto-animate": "^0.8.2", - "@iconify-json/fa6-brands": "^1.2.5", - "@iconify-json/mdi": "^1.2.2", - "@octokit/rest": "^22.0.1", - "@types/react": "^18.3.3", - "@types/react-dom": "^18.3.0", - "@types/whois-json": "^2.0.4", - "astro": "^4.13.0", - "astro-icon": "^1.1.5", - "bluesky-comments": "^0.9.0", - "react": "^18.3.1", - "react-confetti": "^6.1.0", - "react-dom": "^18.3.1", - "react-tooltip": "^5.28.0", - "sharp": "^0.33.4", - "tailwindcss": "^3.4.7", - "typescript": "^5.5.4", - "use-lanyard": "^1.7.0" - }, - "devDependencies": { - "@tailwindcss/typography": "^0.5.13", - "prettier-plugin-astro": "^0.14.1", - "prettier-plugin-tailwindcss": "^0.6.6", - "tailwind-scrollbar": "^3.1.0" - } + "name": "dsns.dev", + "type": "module", + "version": "0.0.1", + "scripts": { + "dev": "astro dev", + "start": "astro dev", + "build": "astro check && astro build", + "preview": "astro preview", + "astro": "astro" + }, + "dependencies": { + "@astrojs/check": "^0.9.6", + "@astrojs/mdx": "^4.3.13", + "@astrojs/react": "^4.4.2", + "@astrojs/tailwind": "^6.0.2", + "@astrojs/vercel": "^9.0.4", + "@fontsource-variable/dm-sans": "^5.0.6", + "@formkit/auto-animate": "^0.8.2", + "@iconify-json/fa6-brands": "^1.2.5", + "@iconify-json/mdi": "^1.2.2", + "@octokit/rest": "^22.0.1", + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", + "@types/whois-json": "^2.0.4", + "astro": "^5.16.11", + "astro-icon": "^1.1.5", + "bluesky-comments": "^0.9.0", + "react": "^18.3.1", + "react-confetti": "^6.1.0", + "react-dom": "^18.3.1", + "react-tooltip": "^5.28.0", + "sharp": "^0.33.4", + "tailwindcss": "^3.4.7", + "typescript": "^5.5.4", + "use-lanyard": "^1.7.0" + }, + "devDependencies": { + "@tailwindcss/typography": "^0.5.13", + "prettier-plugin-astro": "^0.14.1", + "prettier-plugin-tailwindcss": "^0.6.6", + "tailwind-scrollbar": "^3.1.0" + } } diff --git a/src/components/Nav.astro b/src/components/Nav.astro index 06f1df2..ae74eea 100644 --- a/src/components/Nav.astro +++ b/src/components/Nav.astro @@ -6,7 +6,7 @@ import NavButton from "./NavButton.astro"; import SocialButton from "./SocialButton.astro"; --- -