UNPKG

vite-plugin-neutralino

Version:

A Vite plugin for seamless integration with Neutralinojs.

16 lines (13 loc) 294 B
import { Plugin } from 'vite'; /** * Plugin options. */ interface Options { /** * Custom root path for the Neutralinojs project. * @default config.root */ rootPath?: string; } declare const neutralino: (options?: Options) => Plugin; export { neutralino as default };