Skip to content

Commit d05aa4b

Browse files
committed
Add app screenshots in a carousel
1 parent b8703ac commit d05aa4b

File tree

11 files changed

+480
-300
lines changed

11 files changed

+480
-300
lines changed

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)