UNPKG

nuxt

Version:

Nuxt is a free and open-source framework with an intuitive and extendable way to create type-safe, performant and production-grade full-stack web applications and websites with Vue.js.

9 lines (8 loc) 299 B
import type { App } from 'vue'; import '#build/fetch.mjs'; import '#build/global-polyfills.mjs'; import type { NuxtSSRContext } from './nuxt.js'; import '#build/css'; export type Entry = (ssrContext?: NuxtSSRContext) => Promise<App<Element>>; declare const _default: Entry; export default _default;