UNPKG

vike

Version:

The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.

14 lines (13 loc) 395 B
import './assertEnvServer.js'; import { renderPageServer } from './runtime/renderPageServer.js'; export { createPageRenderer }; type Options = { viteDevServer?: unknown; root?: string; outDir?: string; isProduction?: boolean; base?: string; baseAssets?: string | null; }; /** @deprecated */ declare function createPageRenderer(options: Options): typeof renderPageServer;