-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
46 lines (44 loc) · 1.46 KB
/
astro.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import react from "@astrojs/react";
import { defineConfig } from "astro/config";
import tailwind from "@astrojs/tailwind";
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
// https://astro.build/config
export default defineConfig({
image: {
service: {
entrypoint: "astro/assets/services/noop",
},
},
vite: {
ssr: {
external: ["svgo"],
},
},
// Enable Custom Markdown options, plugins, etc.
markdown: {
syntaxHighlight: "shiki",
shikiConfig: {
theme: "one-dark-pro", // Learn more about this configuration here:
// https://docs.astro.build/en/guides/markdown-content/#syntax-highlighting
},
},
// projectRoot: '.', // Where to resolve all URLs relative to. Useful if you have a monorepo project.
// pages: './src/pages', // Path to Astro components, pages, and data
// dist: './dist', // When running `astro build`, path to final static output
// public: './public', // A folder of static files Astro will copy to the root. Useful for favicons, images, and other files that don’t need processing.
site: "https://paul.rastoin.dev/",
// Your public domain, e.g.: https://my-site.dev/. Used to generate sitemaps and canonical URLs.
integrations: [
react(),
tailwind({
// Example: Provide a custom path to a Tailwind config file
config: {
path: "tailwind.config.js",
applyBaseStyles: false,
},
}),
mdx(),
sitemap(),
],
});