16 lines
575 B
JavaScript
16 lines
575 B
JavaScript
import { defineBrandSiteConfig } from '@cocotte/astro-config';
|
|
|
|
// cocotte.maison = agency public canonical. cocotte.club is a separate
|
|
// (future) client-portal feature dir, not served by this Astro project.
|
|
const ORG_PREFIX = '/sites/cocotte/domains/cocotte.maison/';
|
|
const isPreviewBuild = process.env.COCOTTE_PREVIEW_BUILD === '1';
|
|
|
|
export default defineBrandSiteConfig({
|
|
site: 'https://cocotte.maison',
|
|
base: isPreviewBuild ? ORG_PREFIX : '/',
|
|
devAllowedHosts: ['cocotte.maison.apricot.lan'],
|
|
i18n: {
|
|
defaultLocale: 'en',
|
|
locales: ['en', 'fr'],
|
|
},
|
|
});
|