File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22// This file SHOULD be checked into source version control.
33// This file is automatically updated during development when running `dev.ts`.
44
5+ import * as $_lang_index from "./routes/[lang]/index.tsx" ;
56import * as $_404 from "./routes/_404.tsx" ;
67import * as $_app from "./routes/_app.tsx" ;
7- import * as $en_index from "./routes/en/index.tsx" ;
88import * as $index from "./routes/index.tsx" ;
99import * as $AnchorLang from "./islands/AnchorLang.tsx" ;
10+ import * as $ButtonPrint from "./islands/ButtonPrint.tsx" ;
11+ import * as $DarkMode from "./islands/DarkMode.tsx" ;
1012import type { Manifest } from "$fresh/server.ts" ;
1113
1214const manifest = {
1315 routes : {
16+ "./routes/[lang]/index.tsx" : $_lang_index ,
1417 "./routes/_404.tsx" : $_404 ,
1518 "./routes/_app.tsx" : $_app ,
16- "./routes/en/index.tsx" : $en_index ,
1719 "./routes/index.tsx" : $index ,
1820 } ,
1921 islands : {
2022 "./islands/AnchorLang.tsx" : $AnchorLang ,
23+ "./islands/ButtonPrint.tsx" : $ButtonPrint ,
24+ "./islands/DarkMode.tsx" : $DarkMode ,
2125 } ,
2226 baseUrl : import . meta. url ,
2327} satisfies Manifest ;
You can’t perform that action at this time.
0 commit comments