mirror of
https://github.com/labring/FastGPT.git
synced 2025-10-14 15:11:13 +00:00
10 lines
345 B
TypeScript
10 lines
345 B
TypeScript
import { createI18nMiddleware } from 'fumadocs-core/i18n';
|
|
import { i18n } from '@/lib/i18n';
|
|
|
|
export default createI18nMiddleware(i18n);
|
|
|
|
export const config = {
|
|
// matcher: ['/((?!api|_next/static|_next/image|favicon.ico|.*\\.svg|.*\\.png).*)']
|
|
matcher: ['/((?!api|_next/static|_next/image|favicon.ico|.*\\.svg|.*\\.png|deploy/.*).*)']
|
|
};
|