import { defineI18nConfig } from '#i18n' export default defineI18nConfig(() => ({ legacy: false, datetimeFormats: { fr: { short: { year: 'numeric', month: 'numeric', day: 'numeric', }, long: { year: 'numeric', month: 'numeric', day: 'numeric', hour: 'numeric', minute: 'numeric', }, }, en: { short: { year: 'numeric', month: 'numeric', day: 'numeric', }, long: { year: 'numeric', month: 'numeric', day: 'numeric', hour: 'numeric', minute: 'numeric', }, }, }, }))