2025-03-23 01:42:26 +08:00
|
|
|
// @ts-check
|
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
import tailwindcss from '@tailwindcss/vite';
|
|
|
|
|
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
|
|
|
vite: {
|
|
|
|
plugins: [tailwindcss()]
|
2025-04-03 21:18:30 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
// 服务器配置
|
|
|
|
server: {
|
|
|
|
port: 3000,
|
|
|
|
host: true
|
|
|
|
},
|
|
|
|
|
|
|
|
// Markdown 配置
|
|
|
|
markdown: {
|
|
|
|
syntaxHighlight: 'prism',
|
|
|
|
gfm: true,
|
|
|
|
shikiConfig: {
|
|
|
|
theme: 'github-dark',
|
|
|
|
langs: [],
|
|
|
|
wrap: true,
|
|
|
|
}
|
2025-03-23 01:42:26 +08:00
|
|
|
}
|
|
|
|
});
|