File tree Expand file tree Collapse file tree 2 files changed +11
-15
lines changed Expand file tree Collapse file tree 2 files changed +11
-15
lines changed Original file line number Diff line number Diff line change 1
- " needs review 👀 " :
2
- - src/**/*
3
- - public/*
4
-
5
1
" documentation 📖 " :
6
2
- README.md
3
+ - docs/**/*
7
4
8
5
" tooling 🔧 " :
9
6
- .github/**/*
10
- - src/scripts/*
11
- - src/lib/*
12
- - src/hooks/*
7
+ - src/scripts/**/*
8
+ - src/lib/**/*
9
+ - src/hooks/**/*
10
+ - .storybook/**/*
13
11
14
12
" dependencies 📦 " :
15
13
- package.json
16
14
- yarn.lock
17
15
18
- " internal 🏠 " :
19
- - .all-contributorsrc
16
+ " config ⚙️ " :
20
17
- i18n.config.json
21
18
- next.config.js
22
19
- next-i18next.config,js
30
27
- netlify.toml
31
28
32
29
" translation 🌍 " :
33
- - src /content/translations/**/*
30
+ - public /content/translations/**/*
34
31
- src/intl/**/*
35
- - src/lib/utils/translations.ts
32
+ - ! src/intl/en/**
36
33
37
34
" content 🖋️ " :
38
- - src/pages/ *
35
+ - src/intl/en/* *
39
36
- public/content/**/*
37
+ - !public/content/translations/**/*
40
38
41
39
" event 📅 " :
42
40
- src/data/community-events.json
Original file line number Diff line number Diff line change @@ -23,13 +23,11 @@ function detectLocale(acceptLanguage: string | null) {
23
23
24
24
export const config = {
25
25
matcher : [
26
+ "/" , // explicit matcher for root route
26
27
/*
27
28
* Match all request paths except for the ones starting with:
28
29
* - api (API routes)
29
30
* - _next/static (static files)
30
- * - _next/image (image optimization files)
31
- * - favicon.ico (favicon file)
32
- * - .well-known (security files)
33
31
*/
34
32
"/((?!api|_next/static).*)" ,
35
33
] ,
You can’t perform that action at this time.
0 commit comments