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.

11 lines 354 B
import { NuxtSSRContext } from "./types.js"; import "./nuxt.js"; import { App } from "vue"; import "#build/fetch"; import "#build/global-polyfills.mjs"; import "#build/css"; //#region src/app/entry.d.ts type Entry = (ssrContext?: NuxtSSRContext) => Promise<App<Element>>; declare const _default: Entry; //#endregion export { Entry, _default as default };