Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: feat: support mf ssr data loader #6021

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/chilly-rules-dress.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@modern-js/server-core': patch
---

fix(server-core): support cjs async server loader entry
fix(server-core): 支持 cjs 类型的异步 server loader entry
5 changes: 5 additions & 0 deletions .changeset/nice-bags-exist.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@modern-js/runtime': patch
---

feat: consume MODERN_ROUTER_ID_PREFIX
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { useRouteLoaderData as useRouteData } from '@modern-js/runtime-utils/rou
import { routerPlugin } from './plugin';
import type { RouterConfig, SingleRouteConfig } from './types';

declare const MODERN_ROUTER_ID_PREFIX: string | undefined;
export * from '@modern-js/runtime-utils/router';

export type { SingleRouteConfig, RouterConfig };
Expand Down
Loading