UNPKG

@module-federation/vite

Version:
10 lines (9 loc) 295 B
import { Plugin } from 'vite'; interface AddEntryOptions { entryName: string; entryPath: string; fileName?: string; inject?: 'entry' | 'html'; } declare const addEntry: ({ entryName, entryPath, fileName, inject, }: AddEntryOptions) => Plugin[]; export default addEntry;