- Introduced blog routing using Next.js App Router - Implemented dynamic [slug] pages for blog posts - Added MDX-based content loading via lib/posts - Integrated shared TopBar layout with navigation - Established clear content, lib and component separation
7 lines
345 B
JavaScript
7 lines
345 B
JavaScript
// Keep in sync with Turbopack's experimental React switch: file://./../../../../crates/next-core/src/next_import_map.rs
|
|
export function needsExperimentalReact(config) {
|
|
const { taint, transitionIndicator } = config.experimental || {};
|
|
return Boolean(taint || transitionIndicator);
|
|
}
|
|
|
|
//# sourceMappingURL=needs-experimental-react.js.map
|