next_core/next_server/
mod.rs

1pub(crate) mod context;
2pub(crate) mod resolve;
3pub(crate) mod transforms;
4
5pub use context::{
6    ServerChunkingContextOptions, ServerContextType, get_server_chunking_context,
7    get_server_chunking_context_with_client_assets, get_server_compile_time_info,
8    get_server_module_options_context, get_server_resolve_options_context,
9    get_server_runtime_entries,
10};