Skip to content

Commit 8343ace

Browse files
committed
update website
1 parent 579d927 commit 8343ace

41 files changed

Lines changed: 11708 additions & 1 deletion

Some content is hidden

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

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
node_modules
2+
.astro
3+
dist
4+
.DS_Store
5+
.env
6+
.env.*

README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

astro.config.mjs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { defineConfig } from 'astro/config';
2+
import tailwind from '@astrojs/tailwind';
3+
4+
export default defineConfig({
5+
integrations: [
6+
tailwind({
7+
applyBaseStyles: false,
8+
}),
9+
],
10+
});

0 commit comments

Comments
 (0)