Spaces:
Sleeping
Sleeping
File size: 348 Bytes
f75d7fa a9ff6a3 f75d7fa |
1 2 3 4 5 6 7 8 9 10 11 12 |
import type { LocalePrefixMode } from 'node_modules/next-intl/dist/types/src/routing/types';
const localePrefix: LocalePrefixMode = 'as-needed';
// FIXME: Update this configuration file based on your project information
export const AppConfig = {
name: 'Nextjs Starter',
locales: ['en', 'fr', 'vi'],
defaultLocale: 'en',
localePrefix,
};
|