UNPKG

@preact/preset-vite

Version:

Preact preset for the vite bundler

9 lines (8 loc) 362 B
import { Plugin } from "vite"; import type { RollupFilter } from "./utils.js"; export interface PreactDevtoolsPluginOptions { devtoolsInProd?: boolean; devToolsEnabled?: boolean; shouldTransform: RollupFilter; } export declare function preactDevtoolsPlugin({ devtoolsInProd, devToolsEnabled, shouldTransform, }: PreactDevtoolsPluginOptions): Plugin;