Skip to content

Commit

Permalink
Fixed last error and successfully built site. Push to deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
GeauxWeisbeck4 committed Dec 25, 2024
1 parent b6f3e21 commit 217fd8e
Show file tree
Hide file tree
Showing 10 changed files with 2,354 additions and 186 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ pnpm-debug.log*

# jetbrains setting folder
.idea/

# Local Netlify folder
.netlify
10 changes: 9 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,24 @@ import sitemap from '@astrojs/sitemap';

import robotsTxt from 'astro-robots-txt';

import netlify from '@astrojs/netlify';

import mdx from '@astrojs/mdx';

// https://astro.build/config
export default defineConfig({
site: "https://geauxweisbeck4.dev",

prefetch: {
prefetchAll: true
},

markdown: {
shikiConfig: {
theme: 'dracula',
},
},
integrations: [tailwind(), react(), icon(), sitemap(), robotsTxt()]

integrations: [tailwind(), react(), icon(), sitemap(), robotsTxt(), mdx()],
adapter: netlify()
});
Loading

0 comments on commit 217fd8e

Please sign in to comment.