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