summaryrefslogtreecommitdiff
path: root/packages/astro/test/fixtures/i18n-routing-prefix-always/astro.config.mjs
blob: f2aac5899cbbe33fef2da8b3ce267f3655b91bbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { defineConfig} from "astro/config";

export default defineConfig({
	experimental: {
		i18n: {
			defaultLocale: 'en',
			locales: [
				'en', 'pt', 'it'
			], 
			routingStrategy: "prefix-always"
		}
	},
	base: "/new-site"
})