UNPKG

vite-plugin-wext-manifest

Version:

Vite plugin that lets you specify `manifest.json` properties to appear only in specific browsers.

8 lines (7 loc) 214 B
import type { Plugin } from 'vite'; interface WextManifestOptions { manifestPath: string; usePackageJSONVersion?: boolean; } export default function plugin(options: WextManifestOptions): Plugin; export {};