Files
hoelee-blog/astro.config.mjs
T
2026-09-06 04:18:16 +08:00

15 lines
295 B
JavaScript

import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
site: 'https://blog.hoelee.com',
trailingSlash: 'always',
i18n: {
defaultLocale: 'en',
locales: ['en', 'zh'],
routing: {
prefixDefaultLocale: false,
},
},
});