vite-plugin-office-addin-bun
Version:
Office Add-ins development using Vite with Bun and Node.js support. Based on vite-plugin-office-addin by Jozef Izso.
27 lines (26 loc) • 702 B
TypeScript
/**
* Vite Plugin for Office Add-ins with Bun and Node.js support
*
* Based on vite-plugin-office-addin by Jozef Izso
* Original: https://github.com/jozefizso/vite-plugin-office-addin
*
* Enhanced with dual runtime support for Bun and Node.js environments
*/
import type { Plugin } from 'vite';
interface Options {
/**
* Path to the manifest file.
* @default "manifest.xml"
*/
path?: string;
/**
* Development URL to be replaced in the manifest.
*/
devUrl?: string;
/**
* Production URL to replace the development URL in the manifest.
*/
prodUrl?: string;
}
export default function officeManifest(options?: Options): Plugin;
export {};