systech-site/systech-astro/astro.config.mjs

15 lines
286 B
JavaScript

// @ts-check
import { defineConfig } from 'astro/config';
// https://astro.build/config
export default defineConfig({
i18n: {
defaultLocale: 'fr',
locales: ['fr', 'en'],
routing: {
prefixDefaultLocale: false
}
},
site: 'https://systech-hebergement.com'
});