Skip to content

Commit

Permalink
增加 Astro devtool bar
Browse files Browse the repository at this point in the history
  • Loading branch information
coderfe committed Dec 7, 2023
1 parent d4cd6a9 commit 5566296
Show file tree
Hide file tree
Showing 4 changed files with 415 additions and 14 deletions.
10 changes: 6 additions & 4 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import { defineConfig } from 'astro/config';
import mdx from '@astrojs/mdx';
import react from '@astrojs/react';
import sitemap from '@astrojs/sitemap';
import tailwind from '@astrojs/tailwind';
import { defineConfig } from 'astro/config';

import react from "@astrojs/react";
import sentry from '@sentry/astro';
import spotlightjs from '@spotlightjs/astro';

// https://astro.build/config
export default defineConfig({
site: 'https://coderfee.com',
integrations: [mdx(), sitemap(), tailwind(), react()]
});
integrations: [mdx(), sitemap(), tailwind(), react(), sentry(), spotlightjs()],
});
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
"@astrojs/rss": "^4.0.0",
"@astrojs/sitemap": "^3.0.3",
"@astrojs/tailwind": "^5.0.3",
"@sentry/astro": "^7.85.0",
"@spotlightjs/astro": "^1.0.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"astro": "^4.0.1",
Expand Down
Loading

0 comments on commit 5566296

Please sign in to comment.