Skip to content

Commit 18d3eb8

Browse files
committed
Initial commit
0 parents  commit 18d3eb8

63 files changed

Lines changed: 12295 additions & 0 deletions

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: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Claude
2+
.claude/settings.local.json
3+
4+
# Dependencies
5+
node_modules/
6+
7+
# Build output
8+
dist/
9+
10+
# Astro
11+
.astro/
12+
13+
# Logs
14+
*.log
15+
npm-debug.log*
16+
17+
# Editor directories and files
18+
.vscode/*
19+
!.vscode/extensions.json
20+
.idea/
21+
*.suo
22+
*.ntvs*
23+
*.njsproj
24+
*.sln
25+
*.sw?
26+
27+
# OS files
28+
.DS_Store
29+
Thumbs.db
30+
31+
# Environment variables
32+
.env
33+
.env.local
34+
.env.*.local

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# dtvem.io

website/astro.config.mjs

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { defineConfig } from 'astro/config';
2+
import mdx from '@astrojs/mdx';
3+
import sitemap from '@astrojs/sitemap';
4+
import tailwind from '@astrojs/tailwind';
5+
6+
export default defineConfig({
7+
site: 'https://dtvem.io',
8+
integrations: [
9+
mdx(),
10+
sitemap(),
11+
tailwind(),
12+
],
13+
markdown: {
14+
shikiConfig: {
15+
theme: 'github-dark',
16+
wrap: true,
17+
},
18+
},
19+
});

0 commit comments

Comments
 (0)