diff --git a/astro.config.mjs b/astro.config.mjs index 6db0753..27f326f 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -3,28 +3,16 @@ import { defineConfig } from 'astro/config'; import mdx from '@astrojs/mdx'; import sitemap from '@astrojs/sitemap'; import tailwind from '@astrojs/tailwind'; -// import cloudflare from '@astrojs/cloudflare'; // Commented out for local development // https://astro.build/config export default defineConfig({ - site: 'https://argobox.com', // Updated site URL for ArgoBox + site: 'https://argobox.com', // Keep original site URL output: 'static', - // adapter: cloudflare(), // Commented out for local development + // adapter: cloudflare(), // Still commented out integrations: [ mdx(), sitemap(), tailwind(), ], - markdown: { - shikiConfig: { - theme: 'one-dark-pro', - wrap: true - }, - remarkPlugins: [], - rehypePlugins: [] - }, - compressHTML: false, // Disable HTML compression to avoid parsing errors - build: { - format: 'file', // Use 'file' instead of 'directory' format - } + compressHTML: false // Disable HTML compression to avoid parsing errors }); \ No newline at end of file diff --git a/package.json b/package.json index 61754d6..54c5cc5 100644 --- a/package.json +++ b/package.json @@ -9,15 +9,15 @@ "astro": "astro" }, "dependencies": { - "@astrojs/cloudflare": "latest", - "@astrojs/mdx": "latest", - "@astrojs/rss": "latest", - "@astrojs/sitemap": "latest", - "@astrojs/tailwind": "latest", - "astro": "latest", + "@astrojs/cloudflare": "^5.0.0", + "@astrojs/mdx": "^1.1.0", + "@astrojs/rss": "^3.0.0", + "@astrojs/sitemap": "^3.0.0", + "@astrojs/tailwind": "^5.0.0", + "astro": "^3.0.12", "nodemailer": "^6.10.1", "resend": "^4.4.1", - "tailwindcss": "^3.0.24" + "tailwindcss": "^3.3.5" }, "devDependencies": { "@tailwindcss/typography": "^0.5.16"