mirror of
https://github.com/ClovertaTheTrilobita/SanYeCao-blog.git
synced 2026-04-02 01:54:50 +00:00
19 lines
361 B
JavaScript
19 lines
361 B
JavaScript
// @ts-check
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
import { fileURLToPath } from 'node:url'
|
|
|
|
export default defineConfig({
|
|
vite: {
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url)),
|
|
},
|
|
},
|
|
},
|
|
site: "https://blog.cloverta.top",
|
|
redirects: {
|
|
"/": "/zh",
|
|
},
|
|
})
|