Skip to content

Commit c03f3cf

Browse files
Add Astro theme
1 parent 09b47e2 commit c03f3cf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+18268
-0
lines changed

.gitignore

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# build output
2+
dist/
3+
.output/
4+
5+
.vscode/
6+
7+
# dependencies
8+
node_modules/
9+
10+
# logs
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
17+
# environment variables
18+
.env
19+
.env.production
20+
21+
# macOS-specific files
22+
.DS_Store

.npmrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Expose Astro dependencies for `pnpm` users
2+
shamefully-hoist=true

.stackblitzrc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"startCommand": "npm start",
3+
"env": {
4+
"ENABLE_CJS_IMPORTS": true
5+
}
6+
}

astro.config.mjs

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { defineConfig } from "astro/config";
2+
import tailwind from "@astrojs/tailwind";
3+
import vue from "@astrojs/vue";
4+
5+
// https://astro.build/config
6+
export default defineConfig({
7+
integrations: [
8+
// Enable Preact to support Preact JSX components.
9+
vue(),
10+
tailwind(),
11+
],
12+
});

0 commit comments

Comments
 (0)