Added blog list

This commit is contained in:
Rafael González
2022-08-17 23:38:12 -05:00
parent e3a23f9eee
commit dc42b224b7
10 changed files with 582 additions and 92 deletions
+8 -2
View File
@@ -3,8 +3,14 @@ import svelte from "@astrojs/svelte";
import { defineConfig } from "astro/config";
import sitemap from "@astrojs/sitemap";
import mdx from "@astrojs/mdx";
// https://astro.build/config
export default defineConfig({
site: "https://rafa.page",
integrations: [tailwind(), svelte(), sitemap()]
site: "https://rafa.page",
integrations: [tailwind({
config: {
applyBaseStyles: false,
}
}), svelte(), sitemap(), mdx()]
});