- 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
453 B
TypeScript
7 lines
453 B
TypeScript
import type { NextJsHotReloaderInterface } from './hot-reloader-types';
|
|
import { type ServerFields, type SetupOpts } from '../lib/router-utils/setup-dev-bundler';
|
|
import type { Lockfile } from '../../build/lockfile';
|
|
export declare function createHotReloaderTurbopack(opts: SetupOpts & {
|
|
isSrcDir: boolean;
|
|
}, serverFields: ServerFields, distDir: string, resetFetch: () => void, lockfile: Lockfile | undefined): Promise<NextJsHotReloaderInterface>;
|