Skip to content

Commit fe7f64d

Browse files
Merge pull request #1 from sathvik-palley/feature/replace-carousel-with-video
Feature/replace carousel with video
2 parents b8703ac + f02698e commit fe7f64d

File tree

9 files changed

+753
-295
lines changed

9 files changed

+753
-295
lines changed

.claude/settings.local.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(git checkout:*)",
5+
"Bash(npm run dev:*)",
6+
"Bash(git add:*)"
7+
],
8+
"deny": []
9+
}
10+
}

astro.config.mjs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,24 @@
11
// @ts-check
22
import { defineConfig } from 'astro/config';
33

4+
import svelte from '@astrojs/svelte';
5+
46
// https://astro.build/config
57
export default defineConfig({
68
site: 'https://datapuporg.github.io',
79
output: 'static',
10+
811
build: {
912
format: 'directory'
1013
},
14+
1115
markdown: {
1216
syntaxHighlight: 'shiki',
1317
shikiConfig: {
1418
theme: 'github-dark-default',
1519
wrap: true
1620
}
17-
}
18-
});
21+
},
22+
23+
integrations: [svelte()]
24+
});

0 commit comments

Comments
 (0)