File size: 642 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
#![feature(future_join)]
#![feature(arbitrary_self_types)]
#![feature(arbitrary_self_types_pointers)]
#![feature(impl_trait_in_assoc_type)]
mod app;
mod client_references;
mod dynamic_imports;
mod empty;
pub mod entrypoints;
mod font;
mod instrumentation;
mod loadable_manifest;
mod middleware;
mod module_graph;
pub mod module_graph_snapshot;
mod nft_json;
pub mod operation;
mod pages;
pub mod paths;
pub mod project;
pub mod route;
mod server_actions;
mod versioned_content_map;
mod webpack_stats;
pub fn register() {
next_core::register();
turbopack_nodejs::register();
include!(concat!(env!("OUT_DIR"), "/register.rs"));
}
|