14 lines
236 B
JavaScript
14 lines
236 B
JavaScript
|
|
// @ts-check
|
||
|
|
import { defineConfig } from 'astro/config';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
output: 'static',
|
||
|
|
i18n: {
|
||
|
|
defaultLocale: 'pl',
|
||
|
|
locales: ['pl', 'en'],
|
||
|
|
routing: {
|
||
|
|
prefixDefaultLocale: false,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|