a550d6d0fd
- Next.js + MapLibre GL 3D 地球 - CARTO dark-matter vector 底图 - 动态星空背景(闪烁、漂移、流星) - 经纬网格线(graticule) - 文物数据图层与朝代/类别筛选 - 中国风信息弹窗 - 中英双语 i18n - LayerPanel + MapControls 浮动面板
13 lines
388 B
TypeScript
13 lines
388 B
TypeScript
import createMiddleware from 'next-intl/middleware';
|
|
|
|
export default createMiddleware({
|
|
locales: ['zh', 'en'],
|
|
defaultLocale: 'zh',
|
|
localeDetection: true,
|
|
localePrefix: 'always',
|
|
});
|
|
|
|
export const config = {
|
|
// 匹配所有路径,除了 api、_next/static、_next/image、favicon.ico
|
|
matcher: ['/', '/(zh|en)/:path*', '/((?!api|_next/static|_next/image|favicon.ico).*)'],
|
|
}; |