-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
42 lines (40 loc) · 1.07 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
import { defineConfig } from "astro/config";
import mdx from "@astrojs/mdx";
import embeds from "astro-embed/integration";
// import AstroPWA from "@vite-pwa/astro";
export default defineConfig({
integrations: [
embeds(),
mdx(),
],
markdown: {
shikiConfig: {
// Choose from Shiki's built-in themes (or add your own)
// https://github.com/shikijs/shiki/blob/main/docs/themes.md
theme: "material-theme-darker",
// Add custom languages
// Note: Shiki has countless langs built-in, including .astro!
// https://github.com/shikijs/shiki/blob/main/docs/languages.md
langs: [],
},
},
});
/*
AstroPWA({
registerType: 'autoUpdate',
base: '/',
scope: '/',
includeAssets: ['favicon.ico'],
workbox: {
navigateFallback: "/",
globPatterns: ["**//*.{css,js,html,svg,png,jpg,jpeg,webp,ico,txt}"],
},
devOptions: {
enabled: true,
navigateFallbackAllowlist: [/^\//],
},
experimental: {
directoryAndTrailingSlashHandler: true,
},
}),
*/