Styled everything and build the skeleton
This commit is contained in:
@@ -1,5 +1,16 @@
|
||||
// @ts-check
|
||||
import { defineConfig } from 'astro/config';
|
||||
import remarkGithubAlerts from 'remark-github-alerts';
|
||||
import rehypeSlug from 'rehype-slug';
|
||||
import tailwindcss from '@tailwindcss/vite';
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({});
|
||||
export default defineConfig({
|
||||
site: 'https://cyperpunk.de',
|
||||
vite: {
|
||||
plugins: [tailwindcss()]
|
||||
},
|
||||
markdown: {
|
||||
remarkPlugins: [remarkGithubAlerts],
|
||||
rehypePlugins: [rehypeSlug],
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user