Skip to content

Commit

Permalink
feat: add basic index and slug page
Browse files Browse the repository at this point in the history
  • Loading branch information
iamandrewluca committed Jun 12, 2024
1 parent 282006c commit b7e3f85
Show file tree
Hide file tree
Showing 11 changed files with 863 additions and 10 deletions.
5 changes: 4 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"recommendations": ["astro-build.astro-vscode"],
"recommendations": [
"astro-build.astro-vscode",
"unifiedjs.vscode-mdx"
],
"unwantedRecommendations": []
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Astro Starter Kit: Minimal
# WIP: Astro Starter Kit: Minimal

```sh
npm create astro@latest -- --template minimal
Expand Down
6 changes: 5 additions & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
import { defineConfig } from 'astro/config';

import mdx from "@astrojs/mdx";

// https://astro.build/config
export default defineConfig({});
export default defineConfig({
integrations: [mdx()]
});
Loading

0 comments on commit b7e3f85

Please sign in to comment.