SanYeCao-blog/astro.config.mjs

17 lines
324 B
JavaScript
Raw Normal View History

2026-03-24 14:19:09 +00:00
// @ts-check
import { defineConfig } from 'astro/config';
// https://astro.build/config
2026-03-24 17:33:01 +00:00
import { fileURLToPath } from 'node:url'
export default defineConfig({
vite: {
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
},
},
2026-03-24 18:01:45 +00:00
site: "https://blog.cloverta.top"
2026-03-24 17:33:01 +00:00
})