Fork of Chiri for Astro for my blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: clean up config files

the3ash e60dffc8 d4221b80

+3 -20
+3 -20
astro.config.ts
··· 17 17 18 18 export default defineConfig({ 19 19 site: themeConfig.site.website, 20 - devToolbar: { 21 - enabled: false 22 - }, 23 - output: 'static', 24 - build: { 25 - inlineStylesheets: 'auto' 26 - }, 27 20 image: { 28 21 service: { 29 22 entrypoint: 'astro/assets/services/sharp', ··· 50 43 alias: { 51 44 '@': path.resolve('./src') 52 45 } 53 - }, 54 - build: { 55 - rollupOptions: { 56 - output: { 57 - manualChunks: { 58 - 'vendor-katex': ['katex'], 59 - 'vendor-utils': ['reading-time', 'mdast-util-to-string'] 60 - } 61 - } 62 - } 63 - }, 64 - optimizeDeps: { 65 - include: ['katex', 'reading-time'] 66 46 } 47 + }, 48 + devToolbar: { 49 + enabled: false 67 50 } 68 51 })