mirror of
https://github.com/anotherhadi/blog.git
synced 2026-04-02 11:42:10 +02:00
19 lines
391 B
JavaScript
19 lines
391 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()]
|
|
}
|
|
});
|