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.

6 lines (5 loc) 254 B
//#region src/app/entry.async.ts const entry = import.meta.server ? (ctx) => import("#app/entry").then((m) => m.default(ctx)) : () => import("#app/entry").then((m) => m.default); if (import.meta.client) entry(); //#endregion export { entry as default };