17 lines
400 B
JavaScript
17 lines
400 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
import remarkGithubAlerts from 'remark-github-alerts';
|
|
import rehypeSlug from 'rehype-slug';
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
|
|
export default defineConfig({
|
|
site: 'https://cyperpunk.de',
|
|
vite: {
|
|
plugins: [tailwindcss()]
|
|
},
|
|
markdown: {
|
|
remarkPlugins: [remarkGithubAlerts],
|
|
rehypePlugins: [rehypeSlug],
|
|
},
|
|
});
|