first commit
This commit is contained in:
parent
a3f5f5f701
commit
207c82578f
137 changed files with 4659 additions and 8605 deletions
|
|
@ -1,10 +1,34 @@
|
|||
// @ts-check
|
||||
import { defineConfig } from 'astro/config';
|
||||
import mdx from '@astrojs/mdx';
|
||||
import sitemap from '@astrojs/sitemap';
|
||||
import { defineConfig } from "astro/config";
|
||||
import mdx from "@astrojs/mdx";
|
||||
import sitemap from "@astrojs/sitemap";
|
||||
import icon from "astro-icon";
|
||||
import relativeLinks from "astro-relative-links";
|
||||
import pagefind from "astro-pagefind";
|
||||
import astroExpressiveCode from "astro-expressive-code";
|
||||
import tailwindcss from "@tailwindcss/vite";
|
||||
|
||||
/* By default, Latte is light mode and Mocha is dark mode */
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
site: 'https://example.com',
|
||||
integrations: [mdx(), sitemap()],
|
||||
site: "https://tiffwhite.me",
|
||||
build: {
|
||||
format: "file",
|
||||
},
|
||||
integrations: [
|
||||
astroExpressiveCode({
|
||||
themes: ["catppuccin-latte", "catppuccin-frappe"],
|
||||
}),
|
||||
mdx(),
|
||||
sitemap(),
|
||||
icon(),
|
||||
relativeLinks(),
|
||||
pagefind(),
|
||||
relativeLinks(),
|
||||
],
|
||||
|
||||
vite: {
|
||||
plugins: [tailwindcss()],
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue