-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
43 lines (42 loc) · 1.26 KB
/
astro.config.mjs
File metadata and controls
43 lines (42 loc) · 1.26 KB
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
import mdx from "@astrojs/mdx";
import react from "@astrojs/react";
// import sitemap from "@astrojs/sitemap";
import tailwind from "@astrojs/tailwind";
import { defineConfig } from "astro/config";
import config from "./src/config/config.json";
import AutoImport from "astro-auto-import";
// https://astro.build/config
export default defineConfig({
site: config.site.base_url ? config.site.base_url : "http://astrotemplatesitey.com",
base: config.site.base_path ? config.site.base_path : "/",
trailingSlash: config.site.trailing_slash ? "always" : "never",
vite: {
// Simplified CSS config for Netlify compatibility
},
// Image optimization service disabled for Netlify compatibility
// image: {
// service: sharpImageService(),
// },
integrations: [
react(),
// sitemap(), // Disabled due to build issues on Netlify
tailwind(),
AutoImport({
// import react components to use in mdx
imports: [
"@/components/react/FeatherIcon.tsx",
"@/components/CounterComponent.astro",
"@/components/core/Section.astro",
"@/components/react/Changelog.tsx",
"@/components/Badge.astro",
],
}),
mdx()
],
markdown: {
shikiConfig: {
theme: "one-dark-pro",
wrap: true,
}
}
});