9 lines
299 B
TypeScript
9 lines
299 B
TypeScript
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;
|