| 1234567891011121314151617181920212223242526 |
- 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'
- }
- }
- }
- })
- )
|