SanYeCao-blog/astro.config.mjs

16 lines
288 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)),
},
},
},
})