Skip to content

Commit 30cd6c9

Browse files
committed
moving pages
1 parent cc10c29 commit 30cd6c9

19 files changed

+1488
-212
lines changed

.gitignore

+3-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,3 @@
1-
*.log*
2-
.nuxt
3-
.nitro
4-
.cache
5-
.output
6-
.env
7-
dist
8-
.vercel
9-
10-
sw.*
11-
tmp/
12-
131
# build output
142
dist/
153

@@ -31,3 +19,6 @@ pnpm-debug.log*
3119

3220
# macOS-specific files
3321
.DS_Store
22+
23+
.vercel
24+
tmp/

astro.config.mjs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { defineConfig } from 'astro/config';
2-
32
import tailwind from "@astrojs/tailwind";
3+
import mdx from "@astrojs/mdx";
44

55
// https://astro.build/config
66
export default defineConfig({
7-
integrations: [tailwind()]
8-
});
7+
integrations: [mdx(), tailwind()]
8+
});

package.json

+5
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,13 @@
1010
"astro": "astro"
1111
},
1212
"dependencies": {
13+
"@astrojs/mdx": "^1.1.0",
1314
"@astrojs/tailwind": "^5.0.0",
1415
"astro": "^3.1.0",
1516
"tailwindcss": "^3.0.24"
17+
},
18+
"devDependencies": {
19+
"prettier": "^3.0.3",
20+
"prettier-plugin-tailwindcss": "^0.5.4"
1621
}
1722
}

0 commit comments

Comments
 (0)