mirror of
https://github.com/anotherhadi/blog.git
synced 2026-04-02 03:32:10 +02:00
24 lines
513 B
JavaScript
24 lines
513 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
import mdx from '@astrojs/mdx';
|
|
|
|
import sitemap from '@astrojs/sitemap';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
image: {
|
|
service: { entrypoint: 'astro/assets/services/noop' }
|
|
},
|
|
site: "https://hadi.icu",
|
|
output: 'static',
|
|
integrations: [mdx(), sitemap()],
|
|
vite: {
|
|
plugins: [tailwindcss()]
|
|
},
|
|
prefetch: {
|
|
prefetchAll: false,
|
|
defaultStrategy: 'tap'
|
|
},
|
|
}); |