mirror of
https://github.com/anotherhadi/blog.git
synced 2026-05-20 05:32:32 +02:00
1025d5bfa1
Signed-off-by: Hadi <hadi@example.com>
24 lines
560 B
JavaScript
24 lines
560 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
import mdx from '@astrojs/mdx';
|
|
import sitemap from '@astrojs/sitemap';
|
|
import svelte from '@astrojs/svelte';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
image: {
|
|
service: { entrypoint: 'astro/assets/services/noop' }
|
|
},
|
|
site: "https://hadi.icu",
|
|
output: 'static',
|
|
integrations: [mdx(), sitemap(), svelte()],
|
|
vite: {
|
|
plugins: [tailwindcss()]
|
|
},
|
|
prefetch: {
|
|
prefetchAll: false,
|
|
defaultStrategy: 'tap'
|
|
},
|
|
}); |