Skip to content

Commit f731d80

Browse files
committed
feat: add pdf cv
1 parent e74637c commit f731d80

File tree

8 files changed

+2242
-37
lines changed

8 files changed

+2242
-37
lines changed

astro.config.mjs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@ import { defineConfig } from 'astro/config';
22
import tailwindcss from '@tailwindcss/vite';
33
import sitemap from '@astrojs/sitemap';
44
import rehypeExternalLinks from 'rehype-external-links';
5+
import vue from '@astrojs/vue';
6+
7+
import mdx from '@astrojs/mdx';
58

69
export default defineConfig({
710
site: 'https://vslvv.com',
811
vite: {
912
plugins: [tailwindcss()],
1013
},
11-
integrations: [sitemap()],
14+
integrations: [sitemap(), vue(), mdx()],
1215
markdown: {
1316
rehypePlugins: [[rehypeExternalLinks, { target: '_blank', rel: ['noopener', 'noreferrer'] }]],
1417
},
15-
});
18+
});

0 commit comments

Comments
 (0)