edtechdemo / src /utils /AppConfig.ts
Hoang Nguyen
feat(login): init form signin + signup
a9ff6a3
raw
history blame contribute delete
348 Bytes
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,
};