dt-app
Version:
The Dynatrace App Toolkit is a tool you can use from your command line to create, develop, and deploy apps on your Dynatrace environment.
8 lines (7 loc) • 361 B
TypeScript
import type { Plugin } from 'vite';
import type { UiFilePaths } from '../../../utils/config/cli-options';
/**
* Vite plugin that serves the app's index.html at the /ui/ base route and handles SPA fallback.
* Replaces the esbuild HTML generation + fileMap population for the main UI.
*/
export declare function dtHtmlPlugin(uiFilePaths: UiFilePaths): Plugin;